Rearrange source.
[turniej.git] / src / core / localsettings.py.template
1 ADMINS = (
2     #('Name', 'E-mail'),
3 )
4
5 MANAGERS = (
6     #('Name', 'E-mail'),
7 )
8
9 # on
10 DATABASES = {
11     'default': {
12         'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
13         'NAME': '', # Or path to database file if using sqlite3.
14         'USER': '',                      # 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
22 SECRET_KEY = %(secret_key)r
23 MEDIA_ROOT = '%(path)s/media/'