-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.default.js
39 lines (32 loc) · 995 Bytes
/
config.default.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
// User-specific configuration
exports.conversationWorkspaceId = ''; // replace with the workspace identifier of your conversation
// Create the credentials object for export
exports.credentials = {};
// Watson Conversation
// https://www.ibm.com/watson/developercloud/conversation.html
exports.credentials.conversation = {
password: '',
username: ''
};
// Watson Speech to Text
// https://www.ibm.com/watson/developercloud/speech-to-text.html
exports.credentials.speech_to_text = {
password: '',
username: ''
};
// Watson Text to Speech
// https://www.ibm.com/watson/developercloud/text-to-speech.html
exports.credentials.text_to_speech = {
password: '',
username: ''
};
exports.credentials.natural_language_understanding = {
'username':'',
'password':'',
'version_date':'2017-02-27'
};
//Google Maps API Key
//https://developers.google.com/maps/documentation/javascript/get-api-key
exports.mapsKey = {
key: ''
}