-
Notifications
You must be signed in to change notification settings - Fork 1
/
environments.js
114 lines (114 loc) · 1.68 KB
/
environments.js
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
module.exports = [
{
name: 'staging',
config: {
NAME: 'staging',
API_URL: 'https://maap-stg.instedd.org'
}
},
{
name: 'demo',
config: {
NAME: 'demo',
API_URL: 'https://demo.maap.aslm.org'
}
},
{
name: 'bf',
config: {
NAME: 'bf',
API_URL: 'https://bf.maap.aslm.org'
}
},
{
name: 'zw',
config: {
NAME: 'zw',
API_URL: 'https://zw.maap.aslm.org'
}
},
{
name: 'sz',
config: {
NAME: 'sz',
API_URL: 'https://sz.maap.aslm.org'
}
},
{
name: 'ug',
config: {
NAME: 'ug',
API_URL: 'https://ug.maap.aslm.org'
}
},
{
name: 'tz',
config: {
NAME: 'tz',
API_URL: 'https://tz.maap.aslm.org'
}
},
{
name: 'ke',
config: {
NAME: 'ke',
API_URL: 'https://ke.maap.aslm.org'
}
},
{
name: 'ng',
config: {
NAME: 'ng',
API_URL: 'https://ng.maap.aslm.org'
}
},
{
name: 'mw',
config: {
NAME: 'mw',
API_URL: 'https://mw.maap.aslm.org'
}
},
{
name: 'sl',
config: {
NAME: 'sl',
API_URL: 'https://sl.maap.aslm.org'
}
},
{
name: 'gh',
config: {
NAME: 'gh',
API_URL: 'https://gh.maap.aslm.org'
}
},
{
name: 'ga',
config: {
NAME: 'ga',
API_URL: 'https://ga.maap.aslm.org'
}
},
{
name: 'cm',
config: {
NAME: 'cm',
API_URL: 'https://cm.maap.aslm.org'
}
},
{
name: 'zm',
config: {
NAME: 'zm',
API_URL: 'https://zm.maap.aslm.org'
}
},
{
name: 'sn',
config: {
NAME: 'sn',
API_URL: 'https://sn.maap.aslm.org'
}
}
];