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