forked from sebastien-p/ionic-app-starter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.json
68 lines (68 loc) · 1.16 KB
/
project.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"common": {
"constants": {}
},
"builds": {
"dev": {
"excludePlugins": [],
"constants": {}
},
"test": {
"excludePlugins": [],
"constants": {}
},
"preprod": {
"excludePlugins": [],
"constants": {}
},
"qa": {
"excludePlugins": [],
"constants": {}
},
"prod": {
"excludePlugins": [
"cordova-plugin-console"
],
"constants": {}
}
},
"apps": {
"default": {
"name": "App",
"id": "id.goes.here",
"constants": {
"I18N": {
"LOCALES": ["en-US", "fr-FR"],
"DEFAULT": "en-US"
}
},
"builds": {
"dev": {
"constants": {
"API_SERVER_URL": ""
}
},
"test": {
"constants": {
"API_SERVER_URL": ""
}
},
"preprod": {
"constants": {
"API_SERVER_URL": ""
}
},
"qa": {
"constants": {
"API_SERVER_URL": ""
}
},
"prod": {
"constants": {
"API_SERVER_URL": ""
}
}
}
}
}
}