Merge branch 'master' into stable

* master:
  Zmena rozlisovani nastaveni
This commit is contained in:
Tomas Gavenciak 2015-09-14 22:28:35 +02:00
commit 29a5362bff
4 changed files with 74 additions and 25 deletions

View file

@ -1,30 +1,20 @@
import os.path
from .settings_common import *
# Local development settings
#
# "Chytre" rozliseni, zda je toto produkcni, testovaci ci
# jina/vyvojova/lokalni instance.
#
# Je mozne tez rozhodnout primo pomoci:
# DJANGO_SETTINGS_MODULE=mamweb.settings_ZZZ ./manage.py ...
#
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
if os.path.abspath(__file__).startswith('/akce/MaM/WWW/mamweb-test/'):
from .settings_test import *
INSTALLED_APPS += (
'debug_toolbar',
'django_extensions',
)
elif os.path.abspath(__file__).startswith('/akce/MaM/WWW/mamweb/'):
from .settings_prod import *
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
else:
from .settings_local import *
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = ['127.0.0.1']
# Database
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db-local.sqlite3'),
}
}

38
mamweb/settings_local.py Normal file
View file

@ -0,0 +1,38 @@
import os.path
#
# Lokalni / vyvojove nastaveni settings.py
#
# Pro vyber tohoto nastaveni muzete pouzit tez:
# DJANGO_SETTINGS_MODULE=mamweb.settings_local ./manage.py ...
#
# Import common settings
from .settings_common import *
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
INSTALLED_APPS += (
'debug_toolbar',
'django_extensions',
)
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = ['127.0.0.1']
# Database
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db-local.sqlite3'),
}
}

View file

@ -1,7 +1,17 @@
# -*- coding: utf-8 -*-
import os.path
#
# Produkcni nastaveni settings.py
#
# Pro vyber tohoto nastaveni muzete pouzit tez:
# DJANGO_SETTINGS_MODULE=mamweb.settings_prod ./manage.py ...
#
# Import common settings
from .settings_common import *
# Specific settings for remote production
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/

View file

@ -1,6 +1,17 @@
# -*- coding: utf-8 -*-
import os.path
#
# Testovaci nastaveni settings.py (testovani na atreyi)
#
# Pro vyber tohoto nastaveni muzete pouzit tez:
# DJANGO_SETTINGS_MODULE=mamweb.settings_test ./manage.py ...
#
# Import common settings
from .settings_common import *
# Specific settings for remote test site
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/