forked from watson-developer-cloud/social-customer-care
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.js
35 lines (35 loc) · 956 Bytes
/
env.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
module.exports = {
VCAP_SERVICES: JSON.stringify({
natural_language_classifier: [{
credentials: {
url: 'https://gateway.watsonplatform.net/natural-language-classifier/api',
username: 'USERNAME',
password: 'PASSWORD'
}
}],
tone_analyzer: [{
credentials: {
url: 'https://gateway.watsonplatform.net/tone-analyzer/api',
username: 'USERNAME',
password: 'PASSWORD'
}
}],
personality_insights: [{
credentials: {
url: 'https://gateway.watsonplatform.net/personality-insights/api',
username: 'USERNAME',
password: 'PASSWORD'
}
}]
}),
TWITTER: JSON.stringify([{
consumer_key: 'consumer_key',
consumer_secret: 'consumer_secret',
access_token_key: 'access_token_key',
access_token_secret: 'access_token_secret'
}]),
TWITTER_TOPIC: '@support',
CLASSIFIER_ID: ' CLASSIFIER ID',
ALCHEMY_API_KEY: 'ALCHEMY KEY',
DEBUG: 'scc:*'
};