-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
44 lines (35 loc) · 1.43 KB
/
.env.example
File metadata and controls
44 lines (35 loc) · 1.43 KB
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
# =============================================================================
# ESSENTIAL SETTINGS FOR DEVELOPMENT
# =============================================================================
# Django
DJANGO_JWT_ALGORITHM=HS256
DJANGO_SECRET_KEY=dev-secret-key-change-in-production
DJANGO_SETTINGS_MODULE=backend.settings.local
# Database (configured for Docker - do not change if using docker compose)
DB_HOST=database
DB_PORT=5432
DB_NAME=postgres
DB_USER=postgres
DB_PASSWORD=postgres
# Queue (configured for Docker - do not change if using docker compose)
REDIS_HOST=queue
REDIS_PORT=6379
# Search Index (configured for Docker - do not change if using docker compose)
ELASTICSEARCH_URL=http://index:9200
# Logger
LOGGER_LEVEL=DEBUG
LOGGER_IGNORE=faker,haystack
LOGGER_SERIALIZE=
# =============================================================================
# OPTIONAL SETTINGS FOR DEVELOPMENT
# =============================================================================
# Mail notifications (only required if testing email sending)
# ADMINS=Your Name,your.email@example.com
# EMAIL_HOST_USER=your-notifications-email@gmail.com
# EMAIL_HOST_PASSWORD=your-app-password
# Google authentication
# GOOGLE_OAUTH_CLIENT_ID="google_key"
# GOOGLE_OAUTH_CLIENT_SECRET="google_secret"
# Local DB populating (only required to populate local database with production data)
# METABASE_USER=your-metabase-user
# METABASE_PASSWORD=your-metabase-password