1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-24 21:40:34 +02:00

Production settings

This commit is contained in:
Yohann D'ANELLO
2020-05-05 06:16:31 +02:00
parent 4e6641eaab
commit e0254ef730
3 changed files with 59 additions and 13 deletions

15
tfjm/settings_dev.py Normal file
View File

@ -0,0 +1,15 @@
# Database
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
import os
from tfjm.settings import BASE_DIR
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'