Skip to content

Commit debea3c

Browse files
committed
Added: sample env file
1 parent 94aed64 commit debea3c

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.env.sample

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Django settings
2+
DJANGO_DEBUG=False
3+
DJANGO_LIVE=0
4+
DJANGO_SECRET_KEY=your_secret_key
5+
DJANGO_ALLOWED_HOSTS=*
6+
DJANGO_ADMIN_URL=admin
7+
DJANGO_EMAIL_HOST_USER=your_email
8+
DJANGO_EMAIL_HOST_PASSWORD=your_password
9+
10+
# Django superuser credentials
11+
DJANGO_SUPERUSER_PASSWORD=admin
12+
DJANGO_SUPERUSER_USERNAME=admin
13+
DJANGO_SUPERUSER_EMAIL=admin@gmail.com
14+
15+
# Gunicorn settings
16+
GUNICORN_PORT=8000
17+
GUNICORN_WORKERS=4
18+
GUNICORN_TIMEOUT=120
19+
GUNICORN_LOG_LEVEL=INFO
20+
21+
# Email settings
22+
DJANGO_EMAIL_PORT=
23+
DJANGO_EMAIL_USE_TLS=
24+
DJANGO_EMAIL_HOST_USER=
25+
DJANGO_EMAIL_HOST_PASSWORD=
26+
27+
# HSTS settings
28+
DJANGO_HSTS_SECONDS=

0 commit comments

Comments
 (0)