Added command variable from env ymls to manifest

This commit is contained in:
alexjanousekGSA
2024-10-17 13:16:39 -04:00
parent 4eed138dc6
commit 4b62d0e685
6 changed files with 7 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
env: demo
instances: 1
memory: 1G
command: gunicorn -c /home/vcap/app/gunicorn_config.py application
public_admin_route: notify-demo.app.cloud.gov
cloud_dot_gov_route: notify-demo.app.cloud.gov
redis_enabled: 1

View File

@@ -1,6 +1,7 @@
env: production
instances: 2
memory: 1.5G
command: gunicorn -c /home/vcap/app/gunicorn_config.py application
public_admin_route: beta.notify.gov
cloud_dot_gov_route: notify.app.cloud.gov
redis_enabled: 1

View File

@@ -1,6 +1,7 @@
env: sandbox
instances: 1
memory: 1G
command: gunicorn -c /home/vcap/app/gunicorn_config.py application
public_admin_route: notify-sandbox.app.cloud.gov
cloud_dot_gov_route: notify-sandbox.app.cloud.gov
redis_enabled: 1

View File

@@ -1,6 +1,7 @@
env: staging
instances: 1
memory: 1G
command: gunicorn -c /home/vcap/app/gunicorn_config.py application
public_admin_route: notify-staging.app.cloud.gov
cloud_dot_gov_route: notify-staging.app.cloud.gov
redis_enabled: 1