-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.json
33 lines (33 loc) · 894 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
{
"name": "Destroyer2",
"description": "A real-time multiplayer battleship game",
"keywords": ["node", "redis", "battleship", "game"],
"website": "https://umcconnell.github.io/destroyer2/",
"repository": "https://github.com/umcconnell/destroyer2",
"logo": "https://raw.githubusercontent.com/umcconnell/destroyer2/main/docs/.vuepress/public/logo.svg",
"success_url": "/",
"env": {
"JWT_KEY": {
"description": "A secret key for signing JSON Web Tokens.",
"generator": "secret",
"required": true
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/nodejs",
"addons": [
{
"plan": "heroku-redis:hobby-dev"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}