-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.py.tmp
32 lines (25 loc) · 1.38 KB
/
settings.py.tmp
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
EMAIL_SENDER = "Team City Monitor <[email protected]>"
#Your TeamCity Base URL. No trailing slash. Example: http://www.yourname.com
BASE_TC_URL = "http://www.yourdomain.com"
#Team City user login information
TC_USERNAME = "admin"
TC_PW = "..."
#Your Jenkins Base URL. No trailing slash. Example: http://www.yourname.com
BASE_TC_URL = ""
#Jenkins user login information
JENKINS_USERNAME = ""
JENKINS_PASWORD = ""
#HTML <EMBED> code of a sound file to play if there is a build error
#Example: <embed src="http://www.sounds.com/yoursound.wav" autoplay="true" autostart="True" type="audio/wav" style="width:1px;height:1px" loop="true" />"""
EMBED_SOUND_HTML = """<embed src="yoursound.wav" autoplay="true" autostart="True" type="audio/wav" style="width:1px;height:1px" loop="true" />"""
#List of TeamCity build ids that you want to track
#this is loaded into the data store with the /init script
TRACK_STATUS_ONLY_BUILD_IDS = ["bt13", "bt11", "bt17", "bt30", "bt33", "bt32", "bt7", "bt40" ] #"bt36", "bt26",
TRACKED_BUILD_IDS_FULL = ["bt4", "bt5", "bt6", "bt28", "bt2", "bt8", "bt39" ]
TRACKED_BUILD_IDS = []
TRACKED_BUILD_IDS.extend(TRACKED_BUILD_IDS_FULL)
TRACKED_BUILD_IDS.extend(TRACK_STATUS_ONLY_BUILD_IDS)
TRACKED_JENKINS_BUILD_NAMES = ["socialize-website-production"]
#Google API key used to generate graphs.
#You may need to generate your own if you have not already done so on google
GOOGLE_API_KEY = ""