forked from ExtremeOctopi/ExtremeOctopi
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
45 lines (44 loc) · 924 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "friendzone-2",
"scripts": {
},
"env": {
"MONGODB_URI": {
"description": "connecting to MongoDB Heroku Addon server",
"required": true
},
"SESSION_SECRET": {
"description": "For server session auth",
"required": true
},
"TWITTER_CALLBACK_URL": {
"description": "for twitter auth",
"required": true
},
"TWITTER_CONSUMER_KEY": {
"description": "for twitter auth",
"required": true
},
"TWITTER_CONSUMER_SECRET": {
"description": "for twitter auth",
"required": true
},
"TWITTER_TOKEN": {
"description": "for twitter api to pull user info",
"required": true
},
"TWITTER_TOKEN_SECRET": {
"description": "for twitter api to pull user info",
"required": true
}
},
"formation": {
},
"addons": [
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}