-
Notifications
You must be signed in to change notification settings - Fork 11
/
env.sample
33 lines (25 loc) · 1.19 KB
/
env.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
# set the port to listen on
PORT=9000
# used by django
SECRET_KEY='some-key'
DATABASE_URL=mysql://USERNAME:PASSWORD@localhost:33060/DATABASE_NAME
MAILGUN_API_KEY="50 characters long-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
# used to stop defaulting to debug
DJANGO_SETTINGS_MODULE='path.to.settings.module'
# used for reporting errors
SENTRY_DSN="https://[email protected]/1234567"
SENTRY_AUTH_TOKEN="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
SENTRY_ORG="my-org"
SENTRY_ENVIRONMENT='development'
# for using with dramatiq and RabbitMQ
RABBITMQ_URL=amqp://USERNAME:PASSWORD@localhost:5672/
# used for object storage - not alway necessary for local development
DOMAIN_SNAPSHOT_BUCKET = "your-bucket-name"
OBJECT_STORAGE_ENDPOINT = "https://aws.compatible.endpoint"
OBJECT_STORAGE_REGION = "region-name"
OBJECT_STORAGE_ACCESS_KEY_ID = "xxxxxxxxxxxxxxxxxxxx"
OBJECT_STORAGE_SECRET_ACCESS_KEY = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
OBJECT_STORAGE_BUCKET_NAME = "another-bucket-name"
# used for restoring database from snapshots in object storage
OBJECT_STORAGE_BACKUP_BUCKET="another-bucket-name"
OBJECT_STORAGE_BACKUP_KEY_PATH="a-key-with-no-starting-or-ending-slash"