Add Django local parameters
This commit is contained in:
20
sncf/settings_local_example.py
Normal file
20
sncf/settings_local_example.py
Normal file
@@ -0,0 +1,20 @@
|
||||
SECRET_KEY = "CHANGE ME"
|
||||
|
||||
DEBUG = False
|
||||
|
||||
ALLOW_HOSTS = ['sncf.emy.lu']
|
||||
|
||||
CORS_ALLOWED_ORIGINS = [
|
||||
"https://sncf.emy.lu",
|
||||
]
|
||||
|
||||
DATABASES = {
|
||||
"default": {
|
||||
"ENGINE": "django.db.backends.postgresql",
|
||||
"NAME": "sncf",
|
||||
"USER": "sncf",
|
||||
"PASSWORD": "CHANGE ME",
|
||||
"HOST": "localhost",
|
||||
"PORT": "5432",
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user