Add Django local parameters

This commit is contained in:
2024-02-02 01:00:05 +01:00
parent 10dac73146
commit 74a5cf7cbf
3 changed files with 31 additions and 2 deletions

View 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",
}
}