initial commit
[koed-quiz.git] / koedquiz / localsettings.py.template
1 # This template is uploaded by `fab setup`.
2 # You should fill out the details in the version deployed on the server.
3
4
5 ADMINS = (
6     #('Name', 'E-mail'),
7 )
8
9 MANAGERS = (
10     #('Name', 'E-mail'),
11 )
12
13 # on
14 DATABASES = {
15     'default': {
16         'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
17         'NAME': '', # Or path to database file if using sqlite3.
18         'USER': '',                      # Not used with sqlite3.
19         'PASSWORD': '',                  # Not used with sqlite3.
20         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
21         'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
22     }
23 }
24
25
26 SECRET_KEY = %(secret_key)r
27 MEDIA_ROOT = '%(path)s/media/'