-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.py
executable file
·273 lines (229 loc) · 8.21 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
"""
Django settings for qed splash page.
For more information on this file, see
https://docs.djangoproject.com/en/1.10/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.10/ref/settings/
"""
import os
from temp_config.set_environment import DeployEnv
import mimetypes
mimetypes.add_type("text/css", ".css", True)
mimetypes.add_type("text/javascript", ".js", True)
# Determine env vars to use:
runtime_env = DeployEnv()
runtime_env.load_deployment_environment()
print('settings.py')
IS_PROD = False
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
#BASE_DIR = os.path.dirname(os.path.dirname(__file__))
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))
TEMPLATE_ROOT = os.path.join(PROJECT_ROOT, 'templates_qed/') #.replace('\\','/'))
#STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static_qed')
#os.path.join(PROJECT_ROOT, 'templates_qed')
DATA_UPLOAD_MAX_MEMORY_SIZE = 10485760
# cts_api addition:
NODEJS_HOST = 'nginx' # default nodejs hostname
NODEJS_PORT = 80 # default nodejs port
# todo: look into ws w/ django 1.10
# set debug based on env
if (os.environ.get('IS_PUBLIC') == "True") & (os.environ.get('IS_AWS') == 'False'):
DEBUG = False
else:
DEBUG = True
print("DEBUG: " + str(DEBUG))
# set IS_PUBLIC based on env
if os.environ.get('IS_PUBLIC') == "True":
IS_PUBLIC = True # Default to False, check in settings_docker if it is True
IS_DEVELOPMENT = False
else:
IS_PUBLIC = False # Default to False, check in settings_docker if it is True
IS_DEVELOPMENT = True
ADMINS = (
('Dave Lyons', 'lyons.david@epa.gov'),
('Tom Purucker', 'purucker.tom@epa.gov'),
('Kurt Wolfe', 'wolfe.kurt@epa.gov'),
('Nick Pope', 'i.nickpope@gmail.com'), # non-epa email ok?
)
APPEND_SLASH = True
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(TEMPLATE_ROOT, 'api'),
os.path.join(TEMPLATE_ROOT, 'cts'),
os.path.join(TEMPLATE_ROOT, 'cyan'),
os.path.join(TEMPLATE_ROOT, 'epa-cyano-web'),
os.path.join(TEMPLATE_ROOT, 'drupal_2014'),
os.path.join(TEMPLATE_ROOT, 'drupal_2017'),
os.path.join(TEMPLATE_ROOT, 'hem'),
os.path.join(TEMPLATE_ROOT, 'hms'),
os.path.join(TEMPLATE_ROOT, 'hwbi'),
os.path.join(TEMPLATE_ROOT, 'misc'),
os.path.join(TEMPLATE_ROOT, 'pisces'),
os.path.join(TEMPLATE_ROOT, 'pop'),
os.path.join(TEMPLATE_ROOT, 'pram_qaqc_reports'),
os.path.join(TEMPLATE_ROOT, 'sam'),
os.path.join(TEMPLATE_ROOT, 'splash'),
os.path.join(TEMPLATE_ROOT, 'uber2017'),
os.path.join(TEMPLATE_ROOT, 'uber2011'),
os.path.join(TEMPLATE_ROOT, 'uberqaqc'),
os.path.join(TEMPLATE_ROOT, 'nta'),
os.path.join("/src", "collected_static")
],
'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',
],
},
},
]
# Application definition
INSTALLED_APPS = (
'corsheaders',
#'cts_api',
#'cts_testing',
#'crispy_forms',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
#'mod_wsgi.server', # Only needed for mod_wsgi express (Python driver for Apache) e.g. on the production server
# 'docs',
# 'rest_framework_swagger',
'cts_app', # cts django app
'cts_app.filters', # cts filters for pchem table
'cts_app.cts_api',
'cts_app.cts_testing',
# 'cyan_app', # cyan django app
# 'hem_app', # hem django app
'hms_app', # hms django app
'hwbi_app', # hwbi django app
'nta_app',
'pisces_app', # pisces django app
'pram_app', # pram django app
#'pop_app', # pop django app
#'rest_framework',
#'sam_app', # sam django app
'splash_app', # splash django app
# 'ubertool_app', # ubertool django app
# 'wqt_app', # ubertool django app
)
CRISPY_TEMPLATE_PACK = 'bootstrap3'
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',
]
CORS_ORIGIN_ALLOW_ALL = True
MIDDLEWARE_CLASSES = [
'rollbar.contrib.django.middleware.RollbarNotifierMiddleware',
]
ROOT_URLCONF = 'urls'
ROLLBAR = {
'access_token': 'b626ac6c59744e5ba7ddd088a0075893',
# 'environment': 'development', # if DEBUG else 'production',
'environment': 'development',
'branch': 'master',
'root': '/var/www/qed',
}
ROLLBAR = {
'access_token': 'POST_SERVER_ITEM_ACCESS_TOKEN',
'environment': 'development',
'branch': 'master',
'root': os.getcwd()
}
# Database
# https://docs.djangoproject.com/en/1.6/ref/settings/#databases
try:
with open('secrets/secret_key_database.txt') as f:
DB_PASS = f.read().strip()
except IOError as e:
print("secrets/secret_key_database.txt not found!")
DB_PASS = None
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(PROJECT_ROOT, 'db.sqlite3'),
},
'hem_db': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(PROJECT_ROOT, 'hem_app/hem_db.sqlite3'),
},
'hwbi_db': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(PROJECT_ROOT, 'hwbi_app/hwbi_db_v2.sqlite3'),
},
'pisces_db': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': str(os.environ.get('PISCES_DB_NAME')),
'USER': str(os.environ.get('PISCES_DB_USER')),
'PASSWORD': DB_PASS,
'HOST': str(os.environ.get('PISCES_DB_HOST')),
'PORT': '5432',
},
'cyan_db': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(PROJECT_ROOT, 'cyan_app/cyan_web_app_db.sqlite3')
}
}
DATABASE_ROUTERS = {'routers.HemRouter',
'routers.HwbiRouter',
'routers.PiscesRouter'}
# Setups databse-less test runner (Only needed for running test)
#TEST_RUNNER = 'testing.DatabaselessTestRunner'
# CACHE Setup - required to run Django "sessions" without a database
# CACHES = {
# 'default': {
# 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
# 'LOCATION': 'unique-snowflake'
# }
# }
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
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.6/howto/static-files/
# CYAN_ANGULAR_APP_DIR = "static_qed/cyan/webapp"
CYANWEB_ANGULAR_APP_DIR = "static_qed/epa-cyano-web"
HMS_ANGULAR_APP_DIR = "static_qed/hms/webapp"
STATICFILES_DIRS = (
os.path.join(PROJECT_ROOT, 'static_qed'),
# os.path.join(PROJECT_ROOT, CYAN_ANGULAR_APP_DIR),
os.path.join(PROJECT_ROOT, CYANWEB_ANGULAR_APP_DIR),
os.path.join(PROJECT_ROOT, HMS_ANGULAR_APP_DIR)
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
STATIC_URL = '/static_qed/'
# STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static_qed')
#print('BASE_DIR = %s' %BASE_DIR)
print('PROJECT_ROOT = {0!s}'.format(PROJECT_ROOT))
print('TEMPLATE_ROOT = {0!s}'.format(TEMPLATE_ROOT))
# print('STATIC_ROOT = %s' %STATIC_ROOT)
# Path to Sphinx HTML Docs
# http://django-docs.readthedocs.org/en/latest/
DOCS_ROOT = os.path.join(PROJECT_ROOT, 'docs', '_build', 'html')
DOCS_ACCESS = 'public'