-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f549c5
commit 6664fca
Showing
1 changed file
with
142 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,163 +1,143 @@ | ||
import os | ||
import uuid | ||
import logging | ||
import mimetypes | ||
import sys | ||
from pathlib import Path | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
logging.basicConfig( | ||
level=logging.INFO, | ||
format='%(asctime)s %(levelname)s %(message)s', | ||
) | ||
|
||
logger.info("Starting HMS-APP django:settings.py") | ||
|
||
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__)) | ||
TEMPLATE_ROOT = os.path.join(PROJECT_ROOT, 'templates/') | ||
|
||
DEPLOY_ENV = os.getenv("DEPLOY_ENV", "kube-dev") | ||
|
||
#sys.path.insert(0, str(Path(__file__).parent.parent)) | ||
|
||
logger.info(f"PROJECT_ROOT: {PROJECT_ROOT}") | ||
logger.info(f"TEMPLATE_ROOT: {TEMPLATE_ROOT}") | ||
logger.info(f"DEPLOY_ENV: {DEPLOY_ENV}") | ||
|
||
#os.environ["LOGIN_REQUIRED"] = "true" | ||
#try: | ||
# env_var_test = os.environ["LOGIN REQUIRED"] | ||
# logger.info('LOGIN REQUIRED exists') | ||
#except KeyError: | ||
# logger.info('LOGIN REQUIRED does not exist') | ||
#LOGIN_REQUIRED = "false" == os.getenv("LOGIN_REQUIRED", "false").lower() | ||
#LOGIN_URL = "/hms/login" | ||
#LOGIN_VERBOSE = "true" == os.getenv("LOGIN_VERBOSE", "false").lower() | ||
#LOGIN_DURATION = int(os.getenv("LOGIN_DURATION", 86400)) | ||
#logger.info(f"LOGIN_REQUIRED: {LOGIN_REQUIRED}, LOGIN_URL: {LOGIN_URL}, LOGIN_DURATION: {LOGIN_DURATION}, " | ||
# f"LOGIN_VERBOSE: {LOGIN_VERBOSE}") | ||
|
||
if DEPLOY_ENV == "kube-dev": | ||
DEBUG = True | ||
CORS_ORIGIN_ALLOW_ALL = True | ||
else: | ||
DEBUG = False | ||
CORS_ORIGIN_ALLOW_ALL = False | ||
|
||
mimetypes.add_type("application/javascript", ".js", True) | ||
|
||
ALLOWED_HOSTS = ['*'] | ||
APPEND_SLASH = True | ||
|
||
WQ_APP = bool(os.getenv("HMS_WQ_AP", "false").lower() == "true") | ||
logger.info(f"WB app active: {WQ_APP}") | ||
|
||
HMS_PUBLIC = bool(os.getenv("HMS_RELEASE", "False").lower() == "true") | ||
logger.info(f"HMS Public configuration: {HMS_PUBLIC}") | ||
|
||
ADMINS = ( | ||
('Deron Smith', '[email protected]'), | ||
('Kurt Wolfe', '[email protected]'), | ||
) | ||
|
||
TEMPLATES = [ | ||
{ | ||
'BACKEND': 'django.template.backends.django.DjangoTemplates', | ||
'DIRS': [ | ||
os.path.join(TEMPLATE_ROOT), | ||
], | ||
'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', | ||
], | ||
} | ||
} | ||
] | ||
|
||
INSTALLED_APPS = ( | ||
'django.contrib.admin', | ||
'django.contrib.auth', | ||
'django.contrib.contenttypes', | ||
'django.contrib.sessions', | ||
'django.contrib.messages', | ||
'django.contrib.staticfiles', | ||
'hms_app', | ||
'corsheaders' | ||
) | ||
|
||
MIDDLEWARE = [ | ||
'django.contrib.sessions.middleware.SessionMiddleware', | ||
'corsheaders.middleware.CorsMiddleware', | ||
'django.middleware.common.CommonMiddleware', | ||
'django.middleware.csrf.CsrfViewMiddleware', | ||
'django.contrib.auth.middleware.AuthenticationMiddleware', | ||
'django.contrib.messages.middleware.MessageMiddleware', | ||
'django.middleware.clickjacking.XFrameOptionsMiddleware', | ||
] | ||
|
||
#if LOGIN_REQUIRED: | ||
# MIDDLEWARE += [ | ||
# 'login_middleware.RequireLoginMiddleware', | ||
# 'login_middleware.Http403Middleware', | ||
# 'django.contrib.messages.middleware.MessageMiddleware' | ||
#] | ||
|
||
ROOT_URLCONF = 'urls' | ||
|
||
DATABASES = { | ||
'default': { | ||
'ENGINE': 'django.db.backends.sqlite3', | ||
'NAME': os.path.join(PROJECT_ROOT, 'db.sqlite3'), | ||
}, | ||
} | ||
|
||
CACHES = { | ||
'default': { | ||
'BACKEND': 'django.core.cache.backends.dummy.DummyCache', | ||
} | ||
} | ||
|
||
# Internationalization | ||
# https://docs.djangoproject.com/en/1.6/topics/i18n/ | ||
|
||
LANGUAGE_CODE = 'en-us' | ||
|
||
TIME_ZONE = 'America/New_York' | ||
|
||
USE_I18N = True | ||
|
||
USE_L10N = True | ||
|
||
USE_TZ = True | ||
|
||
STATICFILES_DIRS = ( | ||
os.path.join(PROJECT_ROOT, 'static'), | ||
) | ||
|
||
STATICFILES_FINDERS = ( | ||
'django.contrib.staticfiles.finders.FileSystemFinder', | ||
'django.contrib.staticfiles.finders.AppDirectoriesFinder', | ||
) | ||
|
||
STATIC_ROOT = os.path.join(PROJECT_ROOT, "collected_static/hms") | ||
STATIC_URL = '/hms/static/' | ||
|
||
# Define ENVIRONMENTAL VARIABLES | ||
os.environ.update({ | ||
'PROJECT_PATH': PROJECT_ROOT, | ||
'SITE_SKIN': 'EPA', # Leave empty ('') for default skin, 'EPA' for EPA skin | ||
'CONTACT_URL': 'https://www.epa.gov/research/forms/contact-us-about-epa-research', | ||
}) | ||
|
||
SESSION_EXPIRE_AT_BROWSER_CLOSE = True | ||
|
||
SECRET_KEY = str(os.getenv('SECRET_KEY', uuid.uuid1())) | ||
|
||
WSGI_APPLICATION = 'wsgi.application' | ||
|
||
import os | ||
import uuid | ||
import logging | ||
import mimetypes | ||
import sys | ||
from pathlib import Path | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
logging.basicConfig( | ||
level=logging.INFO, | ||
format='%(asctime)s %(levelname)s %(message)s', | ||
) | ||
|
||
logger.info("Starting HMS-APP django:settings.py") | ||
|
||
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__)) | ||
TEMPLATE_ROOT = os.path.join(PROJECT_ROOT, 'templates/') | ||
|
||
DEPLOY_ENV = os.getenv("DEPLOY_ENV", "kube-dev") | ||
|
||
#sys.path.insert(0, str(Path(__file__).parent.parent)) | ||
|
||
logger.info(f"PROJECT_ROOT: {PROJECT_ROOT}") | ||
logger.info(f"TEMPLATE_ROOT: {TEMPLATE_ROOT}") | ||
logger.info(f"DEPLOY_ENV: {DEPLOY_ENV}") | ||
|
||
if "kube" in DEPLOY_ENV.lower(): | ||
DEBUG = True | ||
CORS_ORIGIN_ALLOW_ALL = True | ||
else: | ||
DEBUG = False | ||
CORS_ORIGIN_ALLOW_ALL = False | ||
|
||
mimetypes.add_type("application/javascript", ".js", True) | ||
|
||
ALLOWED_HOSTS = ['*'] | ||
APPEND_SLASH = True | ||
|
||
WQ_APP = bool(os.getenv("HMS_WQ_AP", "false").lower() == "true") | ||
logger.info(f"WB app active: {WQ_APP}") | ||
|
||
HMS_PUBLIC = bool(os.getenv("HMS_RELEASE", "False").lower() == "true") | ||
logger.info(f"HMS Public configuration: {HMS_PUBLIC}") | ||
|
||
ADMINS = ( | ||
('Deron Smith', '[email protected]'), | ||
('Kurt Wolfe', '[email protected]'), | ||
) | ||
|
||
TEMPLATES = [ | ||
{ | ||
'BACKEND': 'django.template.backends.django.DjangoTemplates', | ||
'DIRS': [ | ||
os.path.join(TEMPLATE_ROOT), | ||
], | ||
'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', | ||
], | ||
} | ||
} | ||
] | ||
|
||
INSTALLED_APPS = ( | ||
'django.contrib.admin', | ||
'django.contrib.auth', | ||
'django.contrib.contenttypes', | ||
'django.contrib.sessions', | ||
'django.contrib.messages', | ||
'django.contrib.staticfiles', | ||
'hms_app', | ||
'corsheaders' | ||
) | ||
|
||
MIDDLEWARE = [ | ||
'django.contrib.sessions.middleware.SessionMiddleware', | ||
'corsheaders.middleware.CorsMiddleware', | ||
'django.middleware.common.CommonMiddleware', | ||
'django.middleware.csrf.CsrfViewMiddleware', | ||
'django.contrib.auth.middleware.AuthenticationMiddleware', | ||
'django.contrib.messages.middleware.MessageMiddleware', | ||
'django.middleware.clickjacking.XFrameOptionsMiddleware', | ||
] | ||
|
||
ROOT_URLCONF = 'urls' | ||
|
||
DATABASES = { | ||
'default': { | ||
'ENGINE': 'django.db.backends.sqlite3', | ||
'NAME': os.path.join(PROJECT_ROOT, 'db.sqlite3'), | ||
}, | ||
} | ||
|
||
CACHES = { | ||
'default': { | ||
'BACKEND': 'django.core.cache.backends.dummy.DummyCache', | ||
} | ||
} | ||
|
||
# Internationalization | ||
# https://docs.djangoproject.com/en/1.6/topics/i18n/ | ||
|
||
LANGUAGE_CODE = 'en-us' | ||
|
||
TIME_ZONE = 'America/New_York' | ||
|
||
USE_I18N = True | ||
|
||
USE_L10N = True | ||
|
||
USE_TZ = True | ||
|
||
STATICFILES_DIRS = ( | ||
os.path.join(PROJECT_ROOT, 'static'), | ||
) | ||
|
||
STATICFILES_FINDERS = ( | ||
'django.contrib.staticfiles.finders.FileSystemFinder', | ||
'django.contrib.staticfiles.finders.AppDirectoriesFinder', | ||
) | ||
|
||
STATIC_ROOT = os.path.join(PROJECT_ROOT, "collected_static/hms") | ||
STATIC_URL = '/hms/static/' | ||
|
||
# Define ENVIRONMENTAL VARIABLES | ||
os.environ.update({ | ||
'PROJECT_PATH': PROJECT_ROOT, | ||
'SITE_SKIN': 'EPA', # Leave empty ('') for default skin, 'EPA' for EPA skin | ||
'CONTACT_URL': 'https://www.epa.gov/research/forms/contact-us-about-epa-research', | ||
}) | ||
|
||
SESSION_EXPIRE_AT_BROWSER_CLOSE = True | ||
|
||
SECRET_KEY = str(os.getenv('SECRET_KEY', uuid.uuid1())) | ||
|
||
WSGI_APPLICATION = 'wsgi.application' | ||
|
||
logger.info("This file has been modified") |