forked from DGNum/gestioCOF
Update the settings' docstrings
This commit is contained in:
parent
f29b3f0187
commit
4f60ba35eb
6 changed files with 26 additions and 10 deletions
|
@ -1,7 +1,9 @@
|
|||
"""
|
||||
Django development settings for the cof project.
|
||||
The settings that are not listed here are imported from .common
|
||||
Settings de production de GestioBDS.
|
||||
|
||||
Surcharge les settings définis dans common.py
|
||||
"""
|
||||
|
||||
from .common import * # NOQA
|
||||
from .common import INSTALLED_APPS
|
||||
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
"""
|
||||
Django development settings for the cof project.
|
||||
The settings that are not listed here are imported from .common
|
||||
Settings de production de GestioCOF.
|
||||
|
||||
Surcharge les settings définis dans common.py
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from .common import * # NOQA
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
"""
|
||||
Django common settings for cof project.
|
||||
|
||||
Everything which is supposed to be identical between the production server and
|
||||
the local development server should be here.
|
||||
Settings par défaut et settings communs à GestioCOF et GestioBDS.
|
||||
"""
|
||||
|
||||
import os
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
"""Django local development settings."""
|
||||
"""
|
||||
Settings utilisés dans la VM Vagrant.
|
||||
Active toutes les applications (de GestioCOF et de GestioBDS).
|
||||
|
||||
Surcharge les settings définis dans common.py
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from . import bds_prod
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
"""Django local development settings."""
|
||||
"""
|
||||
Settings utilisés lors d'un développement en local (dans un virtualenv).
|
||||
Active toutes les applications (de GestioCOF et de GestioBDS).
|
||||
|
||||
Surcharge les settings définis dans common.py
|
||||
"""
|
||||
import os
|
||||
|
||||
from . import bds_prod
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
"""
|
||||
Secrets à re-définir en production.
|
||||
"""
|
||||
|
||||
SECRET_KEY = "q()(zn4m63i%5cp4)f+ww4-28_w+ly3q9=6imw2ciu&_(5_4ah"
|
||||
ADMINS = None
|
||||
SERVER_EMAIL = "root@vagrant"
|
||||
|
|
Loading…
Reference in a new issue