-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
58 lines (58 loc) · 1.08 KB
/
config.json
File metadata and controls
58 lines (58 loc) · 1.08 KB
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
{
"development": {
"server": {
"schema": "http://",
"url": "localhost",
"port": 8080
},
"mysql": {
"host": "localhost",
"user": "root",
"password": "",
"database": "wp"
}
},
"production": {
"server": {
"schema": "http://",
"url": "172.20.10.2",
"port": 8080
},
"mysql": {
"host": "localhost",
"user": "root",
"password": "",
"database": "happy_home"
}
},
"mock": {
"server": {
"schema": "http://",
"url": "localhost",
"port": 8080
},
"mysql": {
"host": "localhost",
"user": "root",
"password": "",
"database": "happy_home"
}
},
"api-key": {
"faceAPI": "",
"emotionAPI": ""
},
"azureApi": {
"baseUrl": {
"faceAPI": "https://eastasia.api.cognitive.microsoft.com/face/v1.0",
"emotionAPI": "https://westus.api.cognitive.microsoft.com/emotion/v1.0"
},
"region": {
"faceAPI": "eastasia",
"emotionAPI": "westus"
}
},
"led": {
"ip_address": "192.168.0.255"
}
}