-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
60 lines (47 loc) · 1.33 KB
/
.env.example
File metadata and controls
60 lines (47 loc) · 1.33 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Valid choices: "development", "debug", "debugwait"; anything else will cause it to run in production mode
ENVIRONMENT="development"
DATABASE_USER=postgres
DATABASE_PASSWORD=secret
DATABASE_NAME=paul
DATABASE_HOST=db
DATABASE_PORT=5432
RUN_MIGRATIONS=True
RUN_COMPILE_MESSAGES=True
RUN_COLLECT_STATIC=True
RUN_CREATE_SUPER_USER=True
RUN_CREATE_GROUPS=True
DJANGO_ADMIN_PASSWORD=admin
# Regular admin account
SEED_ADMIN_PASSWORD=admin1
NO_REPLY_EMAIL=
DEFAULT_FROM_EMAIL=
DEFAULT_RECEIVE_EMAIL=
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
EMAIL_HOST=
EMAIL_PORT=25
EMAIL_HOST_USER=
EMAIL_HOST_PASSWORD=
EMAIL_USE_TLS=False
EMAIL_USE_SSL=False
# AWS_COGNITO_REGION=eu-west-1
# AWS_COGNITO_CLIENT_ID=
# AWS_COGNITO_CLIENT_SECRET=
# AWS_COGNITO_DOMAIN=test-staging.auth.eu-west-1.amazoncognito.com
# AWS_COGNITO_USER_POOL_ID=eu-west-abcdef_0123456789
# NGOHUB_API_HOST=api-staging.ngohub.ro
# NGOHUB_API_ACCOUNT=
# NGOHUB_API_KEY=
DEBUG=True
DJANGO_VITE_DEV_MODE=True
ALLOWED_HOSTS=localhost
SECRET_KEY="replace-this-example-key"
SENTRY_DSN=""
# Background tasks
BACKGROUND_WORKERS_COUNT=1
# Recaptcha is disabled if no public key is provided
RECAPTCHA_PUBLIC_KEY=
RECAPTCHA_PRIVATE_KEY=
CORS_ALLOWED_ORIGINS=http://localhost:3000
CORS_ALLOW_ALL_ORIGINS=True