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:
15
tfjm/settings_dev.py
Normal file
15
tfjm/settings_dev.py
Normal 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'
|
Reference in New Issue
Block a user