-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1.08 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
{
"name": "STIR Stack",
"description": "Template for Svelte, Rails, Tailwind, Inertia",
"keywords": ["svelte", "rails", "tailwind", "inertia"],
"website": "https://github.com/seeReadCode/stirstack",
"repository": "https://github.com/seeReadCode/stirstack",
"success_url": "/",
"stack": "heroku-20",
"env": {
"NPM_CONFIG_PRODUCTION": {
"description": "As per vite-ruby",
"value": "false"
},
"YARN_PRODUCTION": {
"description": "As per vite-ruby",
"value": "false"
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies and JWTs.",
"generator": "secret"
},
"DEPLOY_TASKS": {
"value": "db:migrate",
"description": "Space-separated list of tasks to run after each deploy. You shouldn't need to change this."
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [ "heroku-postgresql:hobby-dev" ],
"buildpacks": [
{
"url": "heroku/nodejs"
}
,
{
"url": "heroku/ruby"
}
]
}