Skip to content

Commit

Permalink
Merge pull request #200 from amakarudze/anna-predev
Browse files Browse the repository at this point in the history
settings for dev, predev and production.
  • Loading branch information
tapaswenipathak authored Dec 16, 2018
2 parents 95a2a05 + e2722e6 commit d918ef1
Show file tree
Hide file tree
Showing 6 changed files with 147 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ install:
- pip install coveralls

before_script:
- export SECRET_KEY='x1-pogt0-b5owbgq0=ui02-4v)bba!bg&1m8_$)8-&13(907qf'
- psql -c 'create database travis_ci_test;' -U postgres
- cd oshc/
- python manage.py migrate --noinput
Expand Down
Empty file added oshc/oshc/settings/__init__.py
Empty file.
131 changes: 131 additions & 0 deletions oshc/oshc/settings/base.py
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/'),
)
5 changes: 5 additions & 0 deletions oshc/oshc/settings/dev.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# dev settings
from .base import *


DEBUG = os.getenv("DEBUG", False)
5 changes: 5 additions & 0 deletions oshc/oshc/settings/predev.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# predev settings
from .base import *


DEBUG = os.getenv("DEBUG", True)
5 changes: 5 additions & 0 deletions oshc/oshc/settings/production.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# production settings
from .base import *


DEBUG = os.getenv("DEBUG", False)

0 comments on commit d918ef1

Please sign in to comment.