68 lines
2.1 KiB
Python
68 lines
2.1 KiB
Python
"""
|
|
Django settings for {{ project_name }} project.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/{{ docs_version }}/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/
|
|
"""
|
|
|
|
# Production settings
|
|
from orchestra.conf.production_settings import *
|
|
# Development settings
|
|
# from orchestra.conf.devel_settings import *
|
|
|
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
import os
|
|
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
|
|
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
# Hardcoded values can leak through source control. Consider loading
|
|
# the secret key from an environment variable or a file instead.
|
|
SECRET_KEY = '{{ secret_key }}'
|
|
|
|
ROOT_URLCONF = '{{ project_name }}.urls'
|
|
|
|
WSGI_APPLICATION = '{{ project_name }}.wsgi.application'
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#databases
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
|
|
'NAME': 'orchestra', # Or path to database file if using sqlite3.
|
|
'USER': 'orchestra', # Not used with sqlite3.
|
|
'PASSWORD': 'orchestra', # Not used with sqlite3.
|
|
'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3.
|
|
'PORT': '', # Set to empty string for default. Not used with sqlite3.
|
|
}
|
|
}
|
|
|
|
|
|
# Absolute path to the directory static files should be collected to.
|
|
# Don't put anything in this directory yourself; store your static files
|
|
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
|
|
# Example: "/home/media/media.lawrence.com/static/"
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
|
|
|
|
|
|
# Absolute filesystem path to the directory that will hold user-uploaded files.
|
|
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
|
|
|
|
|
|
# EMAIL_HOST = 'smtp.yourhost.eu'
|
|
# EMAIL_PORT = ''
|
|
# EMAIL_HOST_USER = ''
|
|
# EMAIL_HOST_PASSWORD = ''
|
|
# EMAIL_USE_TLS = False
|
|
# DEFAULT_FROM_EMAIL = 'orchestra@yourhost.eu'
|
|
|
|
|
|
SITE_NAME = '{{ project_name }}'
|
|
|