Files
notifications-admin/manifest-base.yml
Athanasios Voutsadakis b56addb4ff Remove GUNICORN_CMD_ARGS before we start our app
Cloudfoundry adds this env var which forces gunicorn to print
its access log to stdout because reasons.

This also takes precedence over *anything* we put in our config file,
including disabling the access logs.

Related commit:
7b350f292a (diff-153f90501612878d9c6fcd50247547bcR526)
2018-06-25 16:39:18 +01:00

44 lines
703 B
YAML

---
buildpack: python_buildpack
command: >
unset GUNICORN_CMD_ARGS;
scripts/run_app_paas.sh
gunicorn
-c /home/vcap/app/gunicorn_config.py
application
instances: 1
memory: 1G
services:
- logit-ssl-syslog-drain
env:
NOTIFY_APP_NAME: admin
# Credentials variables
ADMIN_CLIENT_SECRET: null
ADMIN_BASE_URL: null
API_HOST_NAME: null
DANGEROUS_SALT: null
SECRET_KEY: null
ROUTE_SECRET_KEY_1: null
ROUTE_SECRET_KEY_2: null
AWS_ACCESS_KEY_ID: null
AWS_SECRET_ACCESS_KEY: null
STATSD_PREFIX: null
ZENDESK_API_KEY: null
TEMPLATE_PREVIEW_API_HOST: null
TEMPLATE_PREVIEW_API_KEY: null
REDIS_ENABLED: null
REDIS_URL: null
applications:
- name: notify-admin