forked from upvote/upvote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 1.11 KB
/
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
{
"name": "Upvote",
"description": "Free, open-source, Rails-powered community sharing platform.",
"website": "https://github.com/upvote/upvote",
"repository": "https://github.com/upvote/upvote",
"env": {
"APP_SECRET_TOKEN": {
"generator": "secret"
},
"TWITTER_API_KEY": {
"description": "Twitter OAuth API Key. See https://apps.twitter.com/ to create one."
},
"TWITTER_API_SECRET": {
"description": "Twitter OAuth API Secret."
},
"GITHUB_CLIENT_ID": {
"description:": "GitHub Application Client ID. See https://github.com/settings/applications to create one.",
"required": false
},
"GITHUB_CLIENT_SECRET": {
"description:": "GitHub Application Secret Key",
"required": false
},
"FACEBOOK_APP_ID": {
"description:": "Facebook App ID. See https://developers.facebook.com/apps/ to create one.",
"required": false
},
"FACEBOOK_APP_SECRET": {
"description:": "Facebook App Secret Key",
"required": false
}
},
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"success_url": "/posts/new"
}