-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.json
53 lines (53 loc) · 1.92 KB
/
config.json
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
{
"local": {
"urls": {
"authenticate": "http://localhost:8080/authenticate",
"createEmailReminder": "http://localhost:8080/reminders/email",
"createSMSReminder": "http://localhost:8080/reminders/sms",
"sendEmailReminders": "http://localhost:8080/reminders/email/send",
"sendSMSReminders": "http://localhost:8080/reminders/sms/send"
}
},
"staging": {
"urls": {
"authenticate": "http://staging-denver-now-api.herokuapp.com/authenticate",
"createEmailReminder": "http://staging-denver-now-api.herokuapp.com/reminders/email",
"createSMSReminder": "http://staging-denver-now-api.herokuapp.com/reminders/sms",
"sendEmailReminders": "http://staging-denver-now-api.herokuapp.com/reminders/email/send",
"sendSMSReminders": "http://staging-denver-now-api.herokuapp.com/reminders/sms/send"
}
},
"prod": {
"urls": {
"authenticate": "http://production-denver-now-api.herokuapp.com/authenticate",
"createEmailReminder": "http://production-denver-now-api.herokuapp.com/reminders/email",
"createSMSReminder": "http://production-denver-now-api.herokuapp.com/reminders/sms",
"sendEmailReminders": "http://production-denver-now-api.herokuapp.com/reminders/email/send",
"sendSMSReminders": "http://production-denver-now-api.herokuapp.com/reminders/sms/send"
}
},
"all": {
"variables": [
"ADMIN_USERNAME",
"ADMIN_PASSWORD",
"MANDRILL_API_KEY",
"MANDRILL_FROM_EMAIL",
"GEOSPATIAL_PROVIDER_NAME",
"GEOSPATIAL_CONNECTION_STRING",
"TWILIO_SID",
"TWILIO_TOKEN",
"TWILIO_NUMBER"
],
"build": {
"solution": "denver-schedules-api.sln"
},
"test": {
"dll": "Schedules.API.Tests/bin/Debug/Schedules.API.Tests.dll",
"output": "tmp/test",
"results": "tmp/test/results.xml"
},
"tools": {
"nunit": "packages/NUnit.Runners.2.6.3/tools/nunit-console.exe"
}
}
}