gergelypolonkai-web-django/gergelypolonkaiweb/settings.py

84 lines
2.0 KiB
Python
Raw Normal View History

"""
Django settings for gergelypolonkaiweb project.
2013-09-24 13:54:41 +00:00
For more information on this file, see
https://docs.djangoproject.com/en/1.6/topics/settings/
2013-09-24 13:54:41 +00:00
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.6/ref/settings/
"""
2013-09-24 13:54:41 +00:00
import os
2013-09-24 13:54:41 +00:00
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
2013-09-24 13:54:41 +00:00
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.6/howto/deployment/checklist/
2013-09-24 13:54:41 +00:00
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'ol#oly77qotgh%47ylflf3wwtr^(b5@=nhd8&@9=!q@*r34w#l'
2013-09-24 13:54:41 +00:00
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
2013-09-24 13:54:41 +00:00
TEMPLATE_DEBUG = True
2013-09-24 13:54:41 +00:00
ALLOWED_HOSTS = []
2013-09-24 13:54:41 +00:00
# Application definition
2013-09-24 13:54:41 +00:00
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
2013-09-24 13:54:41 +00:00
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
2013-09-24 13:54:41 +00:00
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
2013-09-24 13:54:41 +00:00
)
2013-10-01 21:49:18 +00:00
ROOT_URLCONF = 'gergelypolonkaiweb.urls'
2013-09-24 13:54:41 +00:00
2013-10-01 21:49:18 +00:00
WSGI_APPLICATION = 'gergelypolonkaiweb.wsgi.application'
2013-09-24 13:54:41 +00:00
# Database
# https://docs.djangoproject.com/en/1.6/ref/settings/#databases
2013-09-24 13:54:41 +00:00
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
2013-09-24 13:54:41 +00:00
}
}
2013-10-01 20:56:20 +00:00
# Internationalization
# https://docs.djangoproject.com/en/1.6/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.6/howto/static-files/
STATIC_URL = '/static/'
2013-10-01 21:39:27 +00:00
from settings_local import *