forked from sc3/crime-punishment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarbell_config.py
35 lines (25 loc) · 832 Bytes
/
tarbell_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
# -*- coding: utf-8 -*-
"""
Tarbell project configuration
"""
# Short project name
NAME = "crime_punishment"
# Descriptive title of project
TITLE = "Crime and Punishment in Chicago"
# Google spreadsheet key
SPREADSHEET_KEY = "0AtIgbhrbjJC_dGZldkpEUDB0bmRhY1Z3aU9jRlI1VlE"
# Create JSON data at ./data.json, disabled by default
# CREATE_JSON = True
# S3 bucket configuration
S3_BUCKETS = {
# Provide target -> s3 url pairs, such as:
"staging": "s3://chicago-justice.beta.recoveredfactory.net",
"production": "s3://chicago-justice.smartchicagoapps.org"
}
# Repository this project is based on (used for updates)
TEMPLATE_REPO_URL = "https://github.com/newsapps/tarbell-template"
# Default template variables
DEFAULT_CONTEXT = {
'name': u'crime_punishment',
'title': u'Crime and Punishment in Chicago',
}