-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
51 lines (51 loc) · 1.7 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "SaaS Pulse",
"description": "Your daily SaaS snapshot",
"repository": "https://github.com/bullet-train-co/bullet_train",
"logo": "https://bullettrain.co/heroku-logo.png",
"keywords": ["ruby", "rails"],
"buildpacks": [
{ "url": "heroku/ruby" },
{ "url": "heroku/nodejs" }
],
"formation": {
"web": {
"quantity": 1,
"size": "standard-1x"
},
"worker": {
"quantity": 1,
"size": "standard-1x"
}
},
"addons": [
"heroku-postgresql:standard-0",
"heroku-redis:premium-0",
"memcachier:100",
"bucketeer:hobbyist",
"cloudinary:starter",
"scheduler:standard",
"rails-autoscale:white",
"honeybadger:basic",
"sentry:f1"
],
"env": {
"BASE_URL": {
"description": "Supply the fully-qualified URL for this Heroku app, e.g. `https://your-app.herokuapp.com`. You'll update this later after configuring a custom domain.",
"value": "https://ENTER_YOUR_APP_NAME_HERE.herokuapp.com"
},
"FONTAWESOME_NPM_AUTH_TOKEN": {
"description": "We recommend using Font Awesome Pro for icons. To use it, fetch your token from `https://fontawesome.com/how-to-use/on-the-web/setup/using-package-managers` and enter it here.",
"required": false
},
"POSTMARK_API_TOKEN": {
"description": "We recommend using Postmark for email delivery. To use it, add and configure a new server at `https://account.postmarkapp.com/servers`, fetch the API token from the \"API Tokens\" tab, and enter it here.",
"required": false
},
"HIDE_THINGS": {
"description": "This ensures the Super Scaffolding templates don't show up in production.",
"generator": "secret",
"required": true
}
}
}