Update manifest.yml for studio cloud.gov org

This commit is contained in:
Ryan Ahearn
2022-11-01 12:03:05 -04:00
parent e576bbc7e2
commit 5d4dca3ecf
3 changed files with 8 additions and 7 deletions

View File

@@ -3,3 +3,5 @@ web_instances: 2
web_memory: 1G
worker_instances: 1
worker_memory: 512M
public_api_route: notifications-api.app.cloud.gov
admin_base_url: https://notifications-admin.app.cloud.gov

View File

@@ -3,3 +3,5 @@ web_instances: 1
web_memory: 1G
worker_instances: 1
worker_memory: 512M
public_api_route: notifications-api-staging.app.cloud.gov
admin_base_url: https://notifications-admin-staging.app.cloud.gov

View File

@@ -1,14 +1,11 @@
---
applications:
- name: notifications-api-((env))
buildpack: https://github.com/cloudfoundry/python-buildpack.git#v1.7.58
buildpack: python_buildpack
instances: 1
memory: 1G
disk_quota: 1G
health-check-type: process
health-check-invocation-timeout: 1
routes:
- route: notifications-api.app.cloud.gov
- route: ((public_api_route))
- route: notifications-api-((env)).apps.internal
services:
@@ -34,8 +31,8 @@ applications:
FLASK_ENV: production
NOTIFY_ENVIRONMENT: ((env))
API_HOST_NAME: https://notifications-api.app.cloud.gov
ADMIN_BASE_URL: https://notifications-admin.app.cloud.gov
API_HOST_NAME: https://((public_api_route))
ADMIN_BASE_URL: ((admin_base_url))
# Credentials variables
INTERNAL_CLIENT_API_KEYS: '{"notify-admin":["((ADMIN_CLIENT_SECRET))"]}'