-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seperate settings for dev, predev and production. #200
Changes from all commits
1925086
1f773ab
ee9627f
3efddb1
07459f0
e2722e6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
""" | ||
Django settings for oshc project. | ||
|
||
For more information on this file, see | ||
https://docs.djangoproject.com/en/1.7/topics/settings/ | ||
|
||
For the full list of settings and their values, see | ||
https://docs.djangoproject.com/en/1.7/ref/settings/ | ||
""" | ||
|
||
# Build paths inside the project like this: os.path.join(BASE_DIR, ...) | ||
import os | ||
import dj_database_url | ||
from django.core.exceptions import ImproperlyConfigured | ||
|
||
|
||
def get_env_variable(var_name): | ||
"""Get the environment variable or return exception""" | ||
try: | ||
return os.environ[var_name] | ||
except KeyError: | ||
error_msg = 'Set the {} environment variable'.format(var_name) | ||
raise ImproperlyConfigured(error_msg) | ||
|
||
|
||
BASE_DIR = os.path.dirname(os.path.dirname(__file__)) | ||
|
||
# Quick-start development settings - unsuitable for production | ||
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/ | ||
|
||
# SECURITY WARNING: keep the secret key used in production secret! | ||
SECRET_KEY = get_env_variable('SECRET_KEY') | ||
|
||
# SECURITY WARNING: don't run with debug turned on in production! | ||
DEBUG = os.getenv("DEBUG", False) | ||
|
||
ALLOWED_HOSTS = ['*'] | ||
|
||
# Tuple of people who get error notifications | ||
ADMINS = [ | ||
('Tapasweni Pathak', '[email protected]'), | ||
('Nikhita Raghunath', '[email protected]'), | ||
('Ibrahim Jarif', '[email protected]'), | ||
('Amar Prakash Pandey', '[email protected]') | ||
] | ||
|
||
# Application definition | ||
|
||
INSTALLED_APPS = ( | ||
'main', | ||
'django.contrib.admin', | ||
'django.contrib.auth', | ||
'django.contrib.contenttypes', | ||
'django.contrib.sessions', | ||
'django.contrib.messages', | ||
'django.contrib.staticfiles', | ||
) | ||
|
||
MIDDLEWARE_CLASSES = ( | ||
'whitenoise.middleware.WhiteNoiseMiddleware', | ||
'django.contrib.sessions.middleware.SessionMiddleware', | ||
'django.middleware.common.CommonMiddleware', | ||
'django.middleware.csrf.CsrfViewMiddleware', | ||
'django.contrib.auth.middleware.AuthenticationMiddleware', | ||
'django.contrib.auth.middleware.SessionAuthenticationMiddleware', | ||
'django.contrib.messages.middleware.MessageMiddleware', | ||
'django.middleware.clickjacking.XFrameOptionsMiddleware', | ||
) | ||
|
||
ROOT_URLCONF = 'oshc.urls' | ||
|
||
WSGI_APPLICATION = 'oshc.wsgi.application' | ||
|
||
TEMPLATES = [ | ||
{ | ||
'BACKEND': 'django.template.backends.django.DjangoTemplates', | ||
'APP_DIRS': True, | ||
'OPTIONS': { | ||
'context_processors': [ | ||
'django.template.context_processors.debug', | ||
'django.template.context_processors.request', | ||
'django.contrib.auth.context_processors.auth', | ||
'django.contrib.messages.context_processors.messages', | ||
], | ||
}, | ||
}, | ||
] | ||
|
||
# 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.sqlite3'), | ||
} | ||
} | ||
|
||
# Get DATABASE_URL environment variable and update default DATABASE settings | ||
# This setting is required for Heroku | ||
db_from_env = dj_database_url.config() | ||
DATABASES['default'].update(db_from_env) | ||
|
||
# Internationalization | ||
# https://docs.djangoproject.com/en/1.7/topics/i18n/ | ||
|
||
LANGUAGE_CODE = 'en-us' | ||
|
||
TIME_ZONE = 'UTC' | ||
|
||
USE_I18N = True | ||
|
||
USE_L10N = True | ||
|
||
USE_TZ = True | ||
|
||
# Simplified static file serving. | ||
# https://warehouse.python.org/project/whitenoise/ | ||
|
||
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage' | ||
|
||
# Static files (CSS, JavaScript, Images) | ||
# https://docs.djangoproject.com/en/1.7/howto/static-files/ | ||
|
||
STATIC_URL = '/static/' | ||
PROJECT_PATH = os.path.dirname(os.path.abspath(__file__)) | ||
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') | ||
|
||
STATICFILES_DIRS = ( | ||
os.path.join(BASE_DIR, 'main/'), | ||
) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# dev settings | ||
from .base import * | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'from .base import *' used; unable to detect undefined names |
||
|
||
|
||
DEBUG = os.getenv("DEBUG", False) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'os' may be undefined, or defined from star imports: .base |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# predev settings | ||
from .base import * | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'from .base import *' used; unable to detect undefined names |
||
|
||
|
||
DEBUG = os.getenv("DEBUG", True) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'os' may be undefined, or defined from star imports: .base |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# production settings | ||
from .base import * | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'from .base import *' used; unable to detect undefined names |
||
|
||
|
||
DEBUG = os.getenv("DEBUG", False) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'os' may be undefined, or defined from star imports: .base |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you test this by enabling Travis for your fork?