-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
38 lines (38 loc) · 929 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
{
"name": "tottori-od-pm25-api-server",
"description": "Tottori OpenData PM2.5 API Server",
"repository": "https://github.com/code4tottori/tottori-opendata-pm25-server",
"website": "https://github.com/code4tottori/tottori-opendata-pm25-server",
"keywords": [
"Tottori",
"OpenData",
"PM2.5",
"API",
"Rails 5"
],
"scripts": {
"postdeploy": "bundle exec rails db:migrate && bundle exec rails db:seed"
},
"addons": ["heroku-postgresql"],
"success_url": "/",
"env": {
"RAILS_FORCE_SSL": {
"value": "enabled"
},
"APP_ACCESS_SECRET": {},
"NOTIFICATION_THRESHOLD": {
"value": "12"
},
"TWITTER_NOTIFICATION": {},
"TWITTER_ID": {},
"TWITTER_CONSUMER_KEY": {},
"TWITTER_CONSUMER_SECRET": {},
"TWITTER_ACCESS_TOKEN": {},
"TWITTER_ACCESS_SECRET": {}
},
"buildpacks": [{
"url": "heroku/nodejs"
}, {
"url": "heroku/ruby"
}]
}