-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env.example
35 lines (25 loc) · 907 Bytes
/
.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
# This file contains all the environment variables that will be loaded at runtime by Django.
# The order of preference for environment variables will depend on where they come from.
# 1. `--env` flag on the commands `docker run` or `docker compose run`
# 2. `.env` file
# 3. Default values specified when declaring the `environ.Env` object within the "settings.py" file.
# Enable Django's debug mode
DEBUG=True
# -------------------
# Database
# -------------------
POSTGRES_DB=
POSTGRES_USER=
POSTGRES_PASSWORD=
DATABASE_URL=psql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}
SECRET_KEY=
# --------------------------------------
# Cloud Storage static files
# --------------------------------------
USE_GCS_STATICS=False
GCS_BUCKET_STATICS=
# --------------------------------------
# Email settings
# --------------------------------------
SENDGRID_API_KEY=
SENDGRID_FROM_EMAIL=