equal
deleted
inserted
replaced
3 CLIENT_DEBUG = DEBUG |
3 CLIENT_DEBUG = DEBUG |
4 |
4 |
5 YUI_DEBUG = DEBUG # use expanded yui version (i.e. not -min) |
5 YUI_DEBUG = DEBUG # use expanded yui version (i.e. not -min) |
6 YUI_DISTANT = False |
6 YUI_DISTANT = False |
7 |
7 |
8 DATABASE_ENGINE = 'postgresql_psycopg2' # YOUR_SETTINGS # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. |
8 DATABASES = { |
9 DATABASE_NAME = 'db_name' # YOUR_SETTINGS # Or path to database file if using sqlite3. |
9 'default': { |
10 DATABASE_USER = 'db_user' # YOUR_SETTINGS # Not used with sqlite3. |
10 'ENGINE': 'postgresql_psycopg2', # YOUR_SETTINGS # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. |
11 DATABASE_PASSWORD = 'db_pw' # YOUR_SETTINGS # Not used with sqlite3. |
11 'NAME': 'db_name', # YOUR_SETTINGS # Or path to database file if using sqlite3. |
12 DATABASE_HOST = '' # YOUR_SETTINGS # Set to empty string for localhost. Not used with sqlite3. |
12 'USER': 'db_user', # YOUR_SETTINGS # Not used with sqlite3. |
13 DATABASE_PORT = '' # YOUR_SETTINGS # Set to empty string for default. Not used with sqlite3. |
13 'PASSWORD': 'db_pw', # YOUR_SETTINGS # Not used with sqlite3. |
|
14 'HOST': '', # YOUR_SETTINGS # Set to empty string for localhost. Not used with sqlite3. |
|
15 'PORT': '', # YOUR_SETTINGS # Set to empty string for default. Not used with sqlite3. |
|
16 } |
|
17 } |
14 |
18 |
15 SITE_URL = "http://127.0.0.1:8000" # YOUR_SETTINGS |
19 SITE_URL = "http://127.0.0.1:8000" # YOUR_SETTINGS |
16 |
20 |
17 DEFAULT_FROM_EMAIL = "me@example.com" # YOUR_SETTINGS |
21 DEFAULT_FROM_EMAIL = "me@example.com" # YOUR_SETTINGS |
18 |
22 |