Ticket #255: main.py

File main.py, 1.0 KB (added by andreas@…, 19 years ago)

settings/main.py

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