Changeset 6364
- Timestamp:
- Nov 5, 2008, 8:56:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/exodus/settings.py
r6357 r6364 17 17 # Master super path, set to current working path 18 18 EXODUS_ROOT = os.path.dirname(__file__) 19 # EXODUS_ROOT = '/srv/wleiden/exodus/trunk'20 19 21 20 # Whether to find static files which are going to be served by django if running static mode 22 EXODUS_STATIC_ROOT = os.path.join(EXODUS_ROOT, 'static') 23 #EXODUS_STATIC_ROOT = EXODUS_ROOT + 'exodus/static' 21 EXODUS_STATIC_ROOT = os.path.join(EXODUS_ROOT, '/static') 24 22 25 23 DATABASE_ENGINE = 'sqlite3' # 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'. 26 DATABASE_NAME = os.path.join(EXODUS_ROOT, 'exodus.db') 27 #DATABASE_NAME = EXODUS_ROOT + '/exodus.db' # Or path to database file if using sqlite3. 24 #Or path to database file if using sqlite3. 25 DATABASE_NAME = os.path.join(EXODUS_ROOT, '/exodus.db') 28 26 DATABASE_USER = '' # Not used with sqlite3. 29 27 DATABASE_PASSWORD = '' # Not used with sqlite3.
Note:
See TracChangeset
for help on using the changeset viewer.