-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
41 lines (33 loc) · 922 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
36
37
38
39
40
41
# Django Core Settings
DEBUG=True
PROD=False
SECRET_KEY=your-secret-key-here
MORE_ALLOWED_HOSTS=localhost,127.0.0.1
# Production Settings
PROD_FILES_ROOT=/var/www/
PROD_DOMAIN=example.com
# Deployment Settings
DEPLOYMENT_VERSION=TestingLocal-Tue-June-20-2023
# Email Settings
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_USE_TLS=True
EMAIL_HOST_PASSWORD=your-email-password
# Payment Gateway Settings
PAYMENT_GATEWAY_API_KEY=your-payment-gateway-key
# Database Settings
DB_NAME=unison_db
DB_USER=unison_user
DB_PASSWORD=your-strong-password
DB_HOST=db
DB_PORT=5432
# Celery Settings
CELERY_BROKER_URL=redis://localhost:6379
CELERY_RESULT_BACKEND=redis://localhost:6379
# App Settings
APP_BIND_PORT=8234 # Port on host machine to bind the application
# Superuser credentials
SUPERUSER_PASSWORD=admin123