-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.js
34 lines (33 loc) · 995 Bytes
/
environment.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
onpoint = {};
onpoint.env = {
error: "error",
auth: {
success: "auth:success",
failure: "auth:failure"
},
data: {
refresh: "data.refresh"
},
dropbox_access_token: "I4Lb1LdY9yAAAAAAAAAACHw-nSH_V-t1_dEViqlzNBYjJXBKpfpWa7OVYolgb3Yc",
// @if ENV == 'ANDROID'
baseURL: "http://10.0.3.2:5000/api/v0/",
mainURL: "https://vivid-inferno-5187.firebaseio.com/",
serverURL: "https://onpointhealth.herokuapp.com/api/v0/",
environment: "development",
debug: true
// @endif
// @if ENV == 'DEVELOPMENT'
baseURL: "http://localhost:5000/api/v0/",
mainURL: "https://vivid-inferno-5187.firebaseio.com/",
serverURL: "http://localhost:5000/api/v0/",
environment: "development",
debug: true
// @endif
// @if ENV == 'PRODUCTION'
baseURL: "https://onpointhealth.herokuapp.com/api/v0/",
mainURL: "https://vivid-inferno-5187.firebaseio.com/",
serverURL: "https://onpointhealth.herokuapp.com/api/v0/",
environment: "production",
debug: false
// @endif
}