-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
example.env
50 lines (32 loc) · 1.22 KB
/
example.env
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
# ~~IMPORTANT ~~ #
# Rename this file to .env and leave/define any credentials you'd like to use to override the defaults
# The application can run without defining anything here, but some actual credentials may be necessary
# depending on what part of the application you're developing
SECRET_KEY=[SECRET_KEY]
# Database creds
DB_ENGINE=[DB_ENGINE]
DB_NAME=[DB_NAME]
DB_USER=[DB_USER]
DB_PASSWORD=[DB_PASSWORD]
DB_HOST=[DB_HOST]
DB_PORT=[DB_PORT]
# Defaults to True when running in development. Define here to override
DEBUG=[True|False]
# Sets which file in src.settings to use. Defaults to `development` for `development.py`
DJANGO_ENV=development
# Token used to authenticate with pybot for things like Slack invites
PYBOT_AUTH_TOKEN=[AUTH_TOKEN]
# Mailchimp creds
MAILCHIMP_API_KEY=[API_KEY]
MAILCHIMP_USERNAME=[USERNAME]
MAILCHIMP_LIST_ID=[LIST_ID]
# Used for error logging/tracking
SENTRY_DSN=[DSN]
# Creds needed to use AWS S3 for serving static assets
AWS_STORAGE_BUCKET_NAME=[BUCKET_NAMAE]
BUCKET_REGION_NAME=[REGION_NAME]
AWS_ACCESS_KEY_ID=[ACCESS_KEY_ID]
AWS_SECRET_ACCESS_KEY=[SECRET_ACCESS_KEY]
# Honeycomb API token and dataset name
HONEYCOMB_WRITEKEY=[HONEYCOMB_API_TOKEN]
HONEYCOMB_DATASET=[HONEYCOMB_DATASET]