-
Notifications
You must be signed in to change notification settings - Fork 134
/
app.json
37 lines (37 loc) · 1 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
{
"name": "hexlet/hexlet-sicp",
"description": "SICP book tracker",
"repository": "https://github.com/hexlet/hexlet-sicp",
"logo": "https://sicp.hexlet.io/img/Patchouli_Gives_SICP.png",
"keywords": ["hexlet", "sicp", "lisp", "racket", "project"],
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "13"
}
}
],
"env": {
"DB_CONNECTION": "pgsql",
"LOG_CHANNEL": "errorlog",
"APP_KEY": {
"description": "A secret key (32 chars length). Can be generated by `$ php artisan --no-ansi key:generate --show`",
"value": ""
},
"NPM_CONFIG_PRODUCTION": "false",
"RACKET_VERSION": "7.9"
},
"stack": "heroku-20",
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/fey/heroku-buildpack-racket.git"
},
{
"url": "heroku/php"
}
]
}