1 | # Django settings for downman project.
|
---|
2 |
|
---|
3 | DEBUG = True
|
---|
4 |
|
---|
5 | ADMINS = (
|
---|
6 | # ('Your Name', 'your_email@domain.com'),
|
---|
7 | )
|
---|
8 |
|
---|
9 | MANAGERS = ADMINS
|
---|
10 |
|
---|
11 | LANGUAGE_CODE = 'en-us'
|
---|
12 |
|
---|
13 | DATABASE_ENGINE = 'sqlite3' # 'postgresql', 'mysql', or 'sqlite3'.
|
---|
14 | DATABASE_NAME = '/tmp/djdb' # Or path to database file if using sqlite3.
|
---|
15 | DATABASE_USER = '' # Not used with sqlite3.
|
---|
16 | DATABASE_PASSWORD = '' # Not used with sqlite3.
|
---|
17 | DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
|
---|
18 |
|
---|
19 | SITE_ID = 1
|
---|
20 |
|
---|
21 | # Absolute path to the directory that holds media.
|
---|
22 | # Example: "/home/media/media.lawrence.com/"
|
---|
23 | MEDIA_ROOT = '/tmp/'
|
---|
24 |
|
---|
25 | # URL that handles the media served from MEDIA_ROOT.
|
---|
26 | # Example: "http://media.lawrence.com"
|
---|
27 | MEDIA_URL = '/media/'
|
---|
28 |
|
---|
29 | # Make this unique, and don't share it with anybody.
|
---|
30 | SECRET_KEY = '@#(a#57jia)f_rw98xk1#c+5@w_sld!-7q!)n8%^cv+o7j$i(j'
|
---|
31 |
|
---|
32 | ROOT_URLCONF = 'downman.settings.urls.main'
|
---|
33 |
|
---|
34 | TEMPLATE_DIRS = (
|
---|
35 | # Put strings here, like "/home/html/django_templates".
|
---|
36 | )
|
---|
37 |
|
---|
38 | INSTALLED_APPS = (
|
---|
39 | "downman.apps.downman",
|
---|
40 | )
|
---|