-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings_template.py
55 lines (40 loc) · 1010 Bytes
/
settings_template.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
# This app requires a "settings.py" file. Use this file as a template
# and put your AgileZen API key in AGILE_ZEN_API_KEY.
from decimal import Decimal
AGILE_ZEN_API_KEY = '<your AgileZen API key here>'
API_DOMAIN = 'agilezen.com'
API_PATH_PREFIX = '/api/v1'
API_HEADERS = {
"X-Zen-ApiKey": AGILE_ZEN_API_KEY,
"Content-Type": "application/json" }
PROJECTS_URL = 'https://agilezen.com/api/v1/projects'
STORIES_URL = 'https://agilezen.com/api/v1/projects/${project_id}/stories'
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)
TEMPLATE_DIRS = (
'/home/greg/projects/pat/templates/',
)
''' Example
TYPE_TAGS = (
'proposal',
'core component',
)
'''
TYPE_TAGS = ()
''' Example
COST_CATEGORY_TAGS = (
'base',
'base 20',
)
'''
COST_CATEGORY_TAGS = ()
''' Example
STORY_SIZE_VALUES = {
'd': Decimal('8.00'),
'day': Decimal('8.00'),
'days': Decimal('8.00'),
}
'''
STORY_SIZE_VALUES = {}