This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
app_config.py
196 lines (162 loc) · 5.46 KB
/
app_config.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
#!/usr/bin/env python
"""
Project-wide application configuration.
DO NOT STORE SECRETS, PASSWORDS, ETC. IN THIS FILE.
They will be exposed to users. Use environment variables instead.
See get_secrets() below for a fast way to access them.
"""
from exceptions import Exception
import os
"""
NAMES
"""
# Project name used for display
PROJECT_NAME = 'NPR\'s Book Concierge: Our Guide to 2013\'s Great Reads'
# Project name in urls
# Use dashes, not underscores!
PROJECT_SLUG = 'best-books-2013'
# The name of the repository containing the source
REPOSITORY_NAME = 'books13'
REPOSITORY_URL = 'git@github.com:nprapps/%s.git' % REPOSITORY_NAME
REPOSITORY_ALT_URL = None # 'git@bitbucket.org:nprapps/%s.git' % REPOSITORY_NAME'
# The name to be used in paths on the server
PROJECT_FILENAME = 'books13'
"""
DEPLOYMENT
"""
PRODUCTION_S3_BUCKETS = ['apps.npr.org', 'apps2.npr.org']
STAGING_S3_BUCKETS = ['stage-apps.npr.org']
PRODUCTION_SERVERS = ['cron.nprapps.org']
STAGING_SERVERS = ['50.112.92.131']
# Should code be deployed to the web/cron servers?
DEPLOY_TO_SERVERS = False
SERVER_USER = 'ubuntu'
SERVER_PYTHON = 'python2.7'
SERVER_PROJECT_PATH = '/home/%s/apps/%s' % (SERVER_USER, PROJECT_FILENAME)
SERVER_REPOSITORY_PATH = '%s/repository' % SERVER_PROJECT_PATH
SERVER_VIRTUALENV_PATH = '%s/virtualenv' % SERVER_PROJECT_PATH
# Should the crontab file be installed on the servers?
# If True, DEPLOY_TO_SERVERS must also be True
DEPLOY_CRONTAB = False
# Should the service configurations be installed on the servers?
# If True, DEPLOY_TO_SERVERS must also be True
DEPLOY_SERVICES = False
UWSGI_SOCKET_PATH = '/tmp/%s.uwsgi.sock' % PROJECT_FILENAME
UWSGI_LOG_PATH = '/var/log/%s.uwsgi.log' % PROJECT_FILENAME
APP_LOG_PATH = '/var/log/%s.app.log' % PROJECT_FILENAME
# Services are the server-side services we want to enable and configure.
# A three-tuple following this format:
# (service name, service deployment path, service config file extension)
SERVER_SERVICES = [
('app', SERVER_REPOSITORY_PATH, 'ini'),
('uwsgi', '/etc/init', 'conf'),
('nginx', '/etc/nginx/locations-enabled', 'conf'),
]
# These variables will be set at runtime. See configure_targets() below
S3_BUCKETS = []
S3_BASE_URL = ''
SERVERS = []
SERVER_BASE_URL = ''
DEBUG = True
"""
COPY EDITING
"""
COPY_GOOGLE_DOC_KEY = '0AlXMOHKxzQVRdDU5OUlEZEJsdXRtaE8wbmhZY19Kamc'
DATA_GOOGLE_DOC_KEY = '0AlPD88PpyGPUdExyUWV1Z2ZleVl6cGpJa0tOQkMzZnc'
"""
SHARING
"""
PROJECT_DESCRIPTION = 'Find your next great read with NPR Books\' best-of-2013 reading guide.'
SHARE_URL = 'http://%s/%s/' % (PRODUCTION_S3_BUCKETS[0], PROJECT_SLUG)
TWITTER = {
'TEXT': 'Find your next great read with NPR\'s guide to 2013\'s best books. @nprbooks',
'URL': SHARE_URL,
# Will be resized to 120x120, can't be larger than 1MB
'IMAGE_URL': 'http://%s/%s/assets/preview.png' % (PRODUCTION_S3_BUCKETS[0], PROJECT_SLUG)
}
FACEBOOK = {
'TITLE': 'NPR\'s Book Concierge',
'URL': SHARE_URL,
'DESCRIPTION': 'Find your next great read with our guide to 2013\'s best books.',
# Should be square. No documented restrictions on size
'IMAGE_URL': 'http://%s/%s/assets/facebook.png' % (PRODUCTION_S3_BUCKETS[0], PROJECT_SLUG),
'APP_ID': '138837436154588'
}
GOOGLE = {
# Thumbnail image for Google News / Search.
# No documented restrictions on resolution or size
'IMAGE_URL': TWITTER['IMAGE_URL']
}
NPR_DFP = {
'STORY_ID': '1032',
'TARGET': 'Arts___Life_Books',
'ENVIRONMENT': 'NPR',
'TESTSERVER': 'false'
}
"""
SERVICES
"""
GOOGLE_ANALYTICS = {
'ACCOUNT_ID': 'UA-5828686-4',
'DOMAIN': PRODUCTION_S3_BUCKETS[0]
}
"""
Utilities
"""
def get_secrets():
class MissingSecretsError(Exception):
def __init__(self, secret):
self.secret = secret
def __str__(self):
return repr("Missing secret: %s" % self.secret)
"""
A method for accessing our secrets.
"""
secrets = [
'BAKER_TAYLOR_USERID',
'BAKER_TAYLOR_PASSWORD',
'BAKER_TAYLOR_API_USERID',
'BAKER_TAYLOR_API_PASSWORD',
]
secrets_dict = {}
for secret in secrets:
name = '%s_%s' % (PROJECT_FILENAME, secret)
secrets_dict[secret] = os.environ.get(name, None)
if not secrets_dict[secret]:
raise MissingSecretsError(secret)
return secrets_dict
def configure_targets(deployment_target):
"""
Configure deployment targets. Abstracted so this can be
overriden for rendering before deployment.
"""
global S3_BUCKETS
global S3_BASE_URL
global SERVERS
global SERVER_BASE_URL
global DEBUG
global DEPLOYMENT_TARGET
if deployment_target == 'production':
S3_BUCKETS = PRODUCTION_S3_BUCKETS
S3_BASE_URL = 'http://%s/%s' % (S3_BUCKETS[0], PROJECT_SLUG)
SERVERS = PRODUCTION_SERVERS
SERVER_BASE_URL = 'http://%s/%s' % (SERVERS[0], PROJECT_SLUG)
DEBUG = False
elif deployment_target == 'staging':
S3_BUCKETS = STAGING_S3_BUCKETS
S3_BASE_URL = 'http://%s/%s' % (S3_BUCKETS[0], PROJECT_SLUG)
SERVERS = STAGING_SERVERS
SERVER_BASE_URL = 'http://%s/%s' % (SERVERS[0], PROJECT_SLUG)
DEBUG = True
else:
S3_BUCKETS = []
S3_BASE_URL = 'http://127.0.0.1:8000'
SERVERS = []
SERVER_BASE_URL = 'http://127.0.0.1:8001/%s' % PROJECT_SLUG
DEBUG = True
DEPLOYMENT_TARGET = deployment_target
"""
Run automated configuration
"""
DEPLOYMENT_TARGET = os.environ.get('DEPLOYMENT_TARGET', None)
configure_targets(DEPLOYMENT_TARGET)