Skip to content
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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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'
Copy link
Member

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?

- 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', 'tapaswenipathak@gmail.com'),
('Nikhita Raghunath', 'nikitaraghunath@gmail.com'),
('Ibrahim Jarif', 'jarifibrahim@gmail.com'),
('Amar Prakash Pandey', 'amar.om1994@gmail.com')
]

# 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 *

Choose a reason for hiding this comment

The 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)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'os' may be undefined, or defined from star imports: .base

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 *

Choose a reason for hiding this comment

The 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)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'os' may be undefined, or defined from star imports: .base

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 *

Choose a reason for hiding this comment

The 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)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'os' may be undefined, or defined from star imports: .base