-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathenvironment-sample
55 lines (42 loc) · 1.38 KB
/
environment-sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
## This isn't just an example file; it's used in our integration tests, so must
## be kept up to date.
# Path to virtualenv
VIRTUALENV_PATH=
# Django settings
DJANGO_SETTINGS_MODULE=openprescribing.settings.local
# Connection details for a PostgreSQL database.
DB_NAME=
DB_USER=
DB_PASS=
DB_HOST=
# Django's secret key.
SECRET_KEY=secret_key
# Dummy values are fine for local development and testing.
MAILGUN_WEBHOOK_USER=mailgun_webhook_user
MAILGUN_WEBHOOK_PASS=mailgun_webhook_pass
MAILGUN_API_KEY=mailgun_api_key
# If this is set to True then SOURCE_COMMIT_ID must also be defined or the
# application won't start (this is done automatically by the gunicorn_start
# script)
ENABLE_CACHING=False
# Storage path for the DiskCache cache backend (by default we use
# `<REPO_ROOT>/diskcache`)
# DISKCACHE_PATH=
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Only required on the server
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~
GUNICORN_TIMEOUT=60
GUNICORN_NUM_WORKERS=6
GUNICORN_LOG_LEVEL=warn
SLACK_TECHNOISE_POST_KEY=slack_technoise_post_key
SLACK_TEAM_POST_KEY=slack_team_post_key
SLACK_OP_POST_KEY=slack_op_post_key
CF_API_KEY=cf_api_key
# The path to a file containing your credentials for accessing Google Cloud
# Platform services (eg BigQuery, Cloud Storage).
# GOOGLE_APPLICATION_CREDENTIALS=
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Only required for the pipeline
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
TRUD_USERNAME=
TRUD_PASSWORD=