-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
43 lines (34 loc) · 1.33 KB
/
.env.example
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
DEBUG=True
# How much information to log from the application
LOG_LEVEL=INFO
# A sufficiently random string used for Django security, please change in production
SECRET_KEY=putyoursecretkeyhere
# Django allowed hosts, make sure to include your domain name here in production
# and don't set it to * in production!
ALLOWED_HOSTS=*
# REDIS configuration and connection parameters
REDIS_PASSWORD=putpassswordhere
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
# Information for the email to send emails with (contact form, errors, etc...)
EMAIL_HOST=somesmtp.host.com
# Probably 587 if using TLS
EMAIL_PORT=587
EMAIL_HOST_USER=emailusertosendfrom
EMAIL_HOST_PASSWORD=specialemailpassword
# Admins who should receive emails upon errors or Django send_mail
# Currently not used
ADMIN_EMAILS=example@example.com
ADMIN_NAMES=Example
# Sentry API key for Sentry integration, don't set locally if you don't want
# to send development errors
SENTRY_DSN=sentry_dsn_here
# Add AWS S3 credentials here to store user file uploads on S3
AWS_S3_ACCESS_KEY_ID=fakeaccesskey
AWS_S3_SECRET_ACCESS_KEY=fakesecretaccesskey
AWS_STORAGE_BUCKET_NAME=fakebucketname
AWS_S3_ENDPOINT_URL=fakeendpointurl
# Use this to set your development docker image version, for the docker-compose
# commands. In production set VERSION on the command line (see deploy.sh) for
# an example.
VERSION=dev