forked from molomby/keystone-next-heroku-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
27 lines (27 loc) · 831 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
{
"name": "Keystone Next Postgres Example",
"description": "A Keystone Next example/starter project for Heroku deployments",
"repository": "https://github.com/molomby/keystone-next-heroku-starter",
"website": "https://next.keystonejs.com/",
"logo": "https://raw.githubusercontent.com/molomby/keystone-next-heroku-starter/main/assets/keystone-next-logo.png",
"keywords": ["keystone next", "keystonejs", "node", "graphql", "cms", "pgsql"],
"success_url": "/init",
"env": {
"SESSION_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": { "version": "13" }
}
]
}