37 lines
747 B
Python
37 lines
747 B
Python
# Django settings for {{ project_name }} project.
|
|
|
|
DEBUG = True
|
|
|
|
ADMINS = (
|
|
# ('Your Name', 'your_email@domain.com'),
|
|
)
|
|
|
|
MANAGERS = ADMINS
|
|
|
|
LANGUAGE_CODE = 'en-us'
|
|
|
|
DATABASE_ENGINE = 'postgresql' # 'postgresql' or 'mysql'
|
|
DATABASE_NAME = ''
|
|
DATABASE_USER = ''
|
|
DATABASE_PASSWORD = ''
|
|
DATABASE_HOST = '' # Set to empty string for localhost
|
|
|
|
SITE_ID = 1
|
|
|
|
# Absolute path to the directory that holds media.
|
|
# Example: "/home/media/media.lawrence.com/"
|
|
MEDIA_ROOT = ''
|
|
|
|
# URL that handles the media served from MEDIA_ROOT.
|
|
# Example: "http://media.lawrence.com"
|
|
MEDIA_URL = ''
|
|
|
|
ROOT_URLCONF = '{{ project_name }}.settings.urls.main'
|
|
|
|
TEMPLATE_DIRS = (
|
|
# Put strings here, like "/home/html/django_templates".
|
|
)
|
|
|
|
INSTALLED_APPS = (
|
|
)
|