3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-08 10:12:23 +00:00
coope/coopeV3/local_settings.example.py

27 lines
489 B
Python

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'Your secret key'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = ['Server ip']
# Admins
ADMINS = []
EMAIL_HOST = ""
SERVER_EMAIL = ""
# Database
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
DATABASES = {
'default': {
#'ENGINE': 'django.db.backends.sqlite3',
#'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}