Changeset 9051 for src/django_gheat/samples/persisted
- Timestamp:
- Apr 15, 2011, 6:37:35 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/django_gheat/samples/persisted/settings.py
r9041 r9051 8 8 9 9 ADMINS = ( 10 # ('Your Name', 'your_email@domain.com'),10 ('Test Admin', 'admin@example.org'), 11 11 ) 12 12 … … 15 15 DATABASES = { 16 16 'default': { 17 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.18 'NAME': 'project_heatmap', # Or path to database file if using sqlite3.19 'USER': 'root', # Not used with sqlite3.20 'PASSWORD': 'password', # Not used with sqlite3.21 'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3.22 'PORT': '3306', # Set to empty string for default. Not used with sqlite3.17 'ENGINE': 'django.db.backends.mysql', 18 'NAME': 'project_heatmap', 19 'USER': 'root', 20 'PASSWORD': 'password', 21 'HOST': 'localhost', 22 'PORT': '3306', 23 23 } 24 24 } … … 62 62 'django.template.loaders.filesystem.load_template_source', 63 63 'django.template.loaders.app_directories.load_template_source', 64 #'django.template.loaders.eggs.load_template_source',64 'django.template.loaders.eggs.load_template_source', 65 65 ) 66 66 … … 76 76 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". 77 77 # Always use forward slashes, even on Windows. 78 # Don't forget to ABQIAAAA6NuvWGazX80RVrkSkvrUXBQuY05VDPolZO1YI32txJLc5t1HWBRafKMBWIXOpS9wazP_0ErZiNd8_guse absolute paths, not relative paths.78 # Don't forget to use absolute paths, not relative paths. 79 79 os.path.join(PROJECT_HOME, 'templates'), 80 81 80 ) 82 81 83 82 INSTALLED_APPS = ( 83 'django.contrib.admin', 84 84 'django.contrib.auth', 85 85 'django.contrib.contenttypes', 86 86 'django.contrib.sessions', 87 87 'django.contrib.sites', 88 'django_extensions', 88 89 'gheat', 89 'django_extensions',90 90 'home', 91 'django.contrib.admin',92 91 ) 93 92
Note:
See TracChangeset
for help on using the changeset viewer.