-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathapp.json
More file actions
37 lines (37 loc) · 839 Bytes
/
app.json
File metadata and controls
37 lines (37 loc) · 839 Bytes
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": "tDiary",
"website": "https://tdiary.org/",
"repository": "https://github.com/tdiary/tdiary-core",
"addons": [
"sendgrid",
"memcachier"
],
"scripts": {
"postdeploy": "bundle exec rake mongodb:index"
},
"env": {
"TWITTER_KEY": {
"required": true
},
"TWITTER_SECRET": {
"required": true
},
"TWITTER_NAME": {
"required": true,
"description": "only the Twitter user can log into this diary"
},
"MONGODB_URI": {
"required": true,
"description": "specify your MongoDB URI, for example on https://www.mongodb.com/cloud/atlas"
},
"RACK_ENV": "production"
},
"buildpacks": [
{
"url": "https://github.com/tdiary/heroku-buildpack-tdiary"
},
{
"url": "https://github.com/heroku/heroku-buildpack-ruby"
}
]
}