forked from IBM-Cloud/assistant-shop.r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcap-local.json
77 lines (77 loc) · 2.46 KB
/
vcap-local.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
69
70
71
72
73
74
75
76
77
{
"services": {
"businessrules": [
{
"name": "assistant-shop-r-rules",
"label": "businessrules",
"plan": "standard",
"credentials": {
"executionAdminUrl": "https://brsv2-YOUR_SERVICE.ng.bluemix.net/res",
"executionSoapUrl": "https://brsv2-YOUR_SERVICE.ng.bluemix.net/DecisionService/ws",
"executionAdminRestUrl": "https://brsv2-YOUR_SERVICE.ng.bluemix.net/res/apiauth",
"executionRestUrl": "https://brsv2-YOUR_SERVICE.ng.bluemix.net/DecisionService/rest",
"password": "YOUR_PASSWORD",
"user": "YOUR_USERNAME"
}
}
],
"Workflow": [
{
"name": "assistant-shop-r-workflow",
"label": "Workflow",
"plan": "standard",
"credentials": {
"url": "https://workflow.ng.bluemix.net/YOUR_SERVICE/info",
"user": "YOUR_USERNAME",
"password": "YOUR_PASSWORD"
}
}
],
"cloudantNoSQLDB": [
{
"name": "assistant-shop-r-db",
"label": "cloudantNoSQLDB",
"plan": "Shared",
"credentials": {
"username": "YOUR_USERNAME",
"password": "YOUR_PASSWORD",
"host": "YOUR_USERNAME.cloudant.com",
"port": 443,
"url": "YOUR_URL"
}
}
],
"speech_to_text": [
{
"name": "assistant-shop-r-speech-to-text",
"label": "speech_to_text",
"plan": "standard",
"credentials": {
"url": "https://stream.watsonplatform.net/speech-to-text/api",
"username": "YOUR_USERNAME",
"password": "YOUR_PASSWORD"
}
}
],
"user-provided": [
{
"name": "assistant-shop-r-alchemy",
"label": "user-provided",
"credentials": {
"url": "https://access.alchemyapi.com",
"dashboard_url": "https://www.alchemyapi.com/api",
"apikey": "YOUR_API_KEY"
}
},
{
"name": "assistant-shop-r-twilio",
"label": "user-provided",
"credentials": {
"url": "https://api.twilio.com",
"accountSID": "YOUR-ACCOUNT-SID",
"authToken": "YOUR_AUTH_TOKEN"
}
}
]
}
}