Changeset 8784edeece399f9d7eae5a786ea7a0f30a7732da for settings.py
- Timestamp:
- 02/10/09 20:16:04 (3 years ago)
- Children:
- 7218e7ce77d425dcf3e8c6e1bea40242315868c4
- Parents:
- 0cdcde4b0b7371a511bb3681726d4102b8fac1af
- git-committer:
- Frederic Lepied <frederic.lepied@…> (02/10/09 20:16:04)
- Files:
-
- 1 modified
-
settings.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
settings.py
r693511a r8784ede 1 1 # Django settings for pxemngr project. 2 2 3 DEBUG = False3 DEBUG = True 4 4 TEMPLATE_DEBUG = DEBUG 5 5 … … 11 11 12 12 DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 13 DATABASE_NAME = '/home/f red/work/pxemngr/pxe.db' # Or path to database file if using sqlite3.13 DATABASE_NAME = '/home/flepied/work/pxemngr/pxe.db' # Or path to database file if using sqlite3. 14 14 DATABASE_USER = '' # Not used with sqlite3. 15 15 DATABASE_PASSWORD = '' # Not used with sqlite3. … … 70 70 # Always use forward slashes, even on Windows. 71 71 # Don't forget to use absolute paths, not relative paths. 72 '/home/f red/work/pxemngr/pxe/templates',72 '/home/flepied/work/pxemngr/pxe/templates', 73 73 ) 74 74 … … 79 79 'django.contrib.sites', 80 80 'pxe', 81 # 'django.contrib.admin', 81 82 ) 82 83
