mirror of
https://github.com/Sosokker/ku-polls.git
synced 2025-12-18 13:04:05 +01:00
14 lines
738 B
Bash
14 lines
738 B
Bash
# Copy this file to .env and edit the values
|
||
# Create a secret key using (todo: how to create a secret key?)
|
||
SECRET_KEY = secret-key-value-without-quotes
|
||
# Set DEBUG to True for development, False for actual use
|
||
DEBUG = False
|
||
# ALLOWED_HOSTS is a comma-separated list of hosts that can access the app.
|
||
# You can use wildcard chars (*) and IP addresses. Use * for any host.
|
||
ALLOWED_HOSTS = *.ku.th, localhost, 127.0.0.1, ::1
|
||
# Your timezone
|
||
TIME_ZONE = Asia/Bangkok
|
||
# Password to use for the SMTP server defined in EMAIL_HOST. This setting is used in conjunction
|
||
# with EMAIL_HOST_USER when authenticating to the SMTP server.
|
||
# If either of these settings is empty, Django won’t attempt authentication.
|
||
EMAIL_HOST_PASSWORD=somepassword |