|
@@ -16,12 +16,23 @@ ADMINS = (
|
|
|
|
|
|
MANAGERS = ADMINS
|
|
MANAGERS = ADMINS
|
|
|
|
|
|
-DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
|
|
|
|
-DATABASE_NAME = 'development.db' # Or path to database file if using sqlite3.
|
|
|
|
-DATABASE_USER = '' # Not used with sqlite3.
|
|
|
|
-DATABASE_PASSWORD = '' # Not used with sqlite3.
|
|
|
|
-DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
|
|
|
|
-DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
|
|
|
|
|
|
+# 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
|
|
|
|
+DATABASE_ENGINE = 'sqlite3'
|
|
|
|
+
|
|
|
|
+# path to database file if using sqlite3.
|
|
|
|
+DATABASE_NAME = 'development.db'
|
|
|
|
+
|
|
|
|
+# Not used with sqlite3.
|
|
|
|
+DATABASE_USER = ''
|
|
|
|
+
|
|
|
|
+# Not used with sqlite3.
|
|
|
|
+DATABASE_PASSWORD = ''
|
|
|
|
+
|
|
|
|
+# Set to empty string for localhost. Not used with sqlite3.
|
|
|
|
+DATABASE_HOST = ''
|
|
|
|
+
|
|
|
|
+# Set to empty string for default. Not used with sqlite3.
|
|
|
|
+DATABASE_PORT = ''
|
|
|
|
|
|
# Local time zone for this installation. Choices can be found here:
|
|
# Local time zone for this installation. Choices can be found here:
|
|
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
|
|
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
|
|
@@ -73,7 +84,8 @@ MIDDLEWARE_CLASSES = (
|
|
ROOT_URLCONF = 'celery_http_gateway.urls'
|
|
ROOT_URLCONF = 'celery_http_gateway.urls'
|
|
|
|
|
|
TEMPLATE_DIRS = (
|
|
TEMPLATE_DIRS = (
|
|
- # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
|
|
|
|
|
|
+ # Put strings here, like "/home/html/django_templates" or
|
|
|
|
+ # "C:/www/django/templates".
|
|
# Always use forward slashes, even on Windows.
|
|
# Always use forward slashes, even on Windows.
|
|
# Don't forget to use absolute paths, not relative paths.
|
|
# Don't forget to use absolute paths, not relative paths.
|
|
)
|
|
)
|