Projet

Général

Profil

Télécharger (492 octets) Statistiques
| Branche: | Tag: | Révision:

root / debian / settings.py @ 75a981d9

1
import os
2

    
3
DEBUG = False
4
TEMPLATE_DEBUG = False
5

    
6
ALLOWED_HOSTS = [
7
        '*',
8
]
9

    
10
LANGUAGE_CODE = 'fr-fr'
11
TIME_ZONE = 'Europe/Paris'
12

    
13
# LDAP_CONF = {
14
#     'url': 'ldap://localhost',
15
#     'bind_dn': 'cn=admin,dc=dev,dc=entrouvert,dc=org',
16
#     'options': {},
17
#     'bind_passwd': 'changeme',
18
#     'dn': 'ou=users,dc=dev,dc=entrouvert,dc=org',
19
# }
20

    
21
DATABASES = {
22
    'default': {
23
        'ENGINE': 'django.db.backends.sqlite3',
24
        'NAME': os.path.join(VAR_DIR, 'db.sqlite3'),
25
    }
26
}
(10-10/16)