-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
26 lines (19 loc) · 827 Bytes
/
.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
DJANGO_SECRET_KEY=YourDjangoSecretKey
################################################################################
# Redis Configuration
################################################################################
# Specify Redis host
REDIS_HOST=redis
# Specify Redis password. Cannot be blank.
REDIS_PASSWORD=YourPasswordHere1234
################################################################################
# PostgreSQL Configuration
################################################################################
# Specify Postgres host.
POSTGRES_HOST=db
# Name of the database to use. Used only in production.
POSTGRES_DB=app
# User who can access this database. Used only in production.
POSTGRES_USER=postgres
# Password of the user. Cannot be blank. Used only in production.
POSTGRES_PASSWORD=postgres