32305796258ae989d41ce224f586e63077fa1a86
[fnpdjango.git] / fnpdjango / deploy / templates / localsettings.py.template
1 # Review this file and copy it to %(app_path)s/localsettings.py
2
3 ADMINS = (
4     ('Lista IT', 'it@listy.nowoczesnapolska.org.pl'),
5 )
6 MANAGERS = (
7     ('Lista IT', 'it@listy.nowoczesnapolska.org.pl'),
8 )
9
10 DATABASES = {
11     'default': {
12         'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
13         'NAME': '%(project_name)s', # Or path to database file if using sqlite3.
14         'USER': '%(project_name)s', # Not used with sqlite3.
15         'PASSWORD': '',             # Not used with sqlite3.
16         'HOST': '',                 # Set to empty string for localhost. Not used with sqlite3.
17         'PORT': '',                 # Set to empty string for default. Not used with sqlite3.
18     }
19 }
20
21 SECRET_KEY = '%(secret_key)s'
22 ALLOWED_HOSTS = (
23     '%(project_name)s.nowoczesnapolska.org.pl',
24 )
25
26 PIWIK_URL = 'http://piwik.nowoczesnapolska.org.pl/'
27 PIWIK_TOKEN = ''
28
29 MEDIA_ROOT = '%(app_path)s/media/'
30 STATIC_ROOT = '%(app_path)s/static/'
31
32
33 # Those should be set to True if you are behind Nginx.
34 FNPDJANGO_REALIP = True
35 FNPDJANGO_XACCEL = True