forked from ninjacodez/moodify
-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
34 lines (33 loc) · 876 Bytes
/
app.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
{
"name": "moooodify",
"scripts": {
"start": "node ./server/index.js"
},
"dependencies": {
"express": "^4.15.2"
},
"env": {
"MM_API_KEY": {"required": true},
"MONGODB_URI": {"required": true},
"WATSON_NLU_PASSWORD": {"required": true},
"WATSON_NLU_USERNAME": {"required": true},
"WATSON_TONE_PASSWORD": {"required": true},
"WATSON_TONE_USERNAME": {"required": true},
"GOOGLE_API_KEY": {"required": true},
"TWITTER_API_CONSUMER_KEY": {"required": true},
"TWITTER_API_CONSUMER_SECRET": {"required": true},
"TWITTER_API_ACCESS_TOKEN": {"required": true},
"TWITTER_API_ACCESS_TOKEN_SECRET": {"required": true},
"AWS_ACCESS_KEY_ID": {"required": true},
"AWS_SECRET_ACCESS_KEY": {"required": true}
},
"formation": {
},
"addons": [
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}