mirror of https://github.com/kcal-app/kcal.git
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
||
"name": "kcal – the personal food nutrition journal",
|
||
"description": "Self-hostable web app for food and recipe nutrition tracking.",
|
||
"keywords": [
|
||
"cooking",
|
||
"fitness",
|
||
"food",
|
||
"heath",
|
||
"laravel",
|
||
"nutrition",
|
||
"php",
|
||
"recipes",
|
||
"self-host"
|
||
],
|
||
"repository": "https://github.com/kcal-app/kcal",
|
||
"website": "http://demo.kcal.cooking",
|
||
"buildpacks": [
|
||
{
|
||
"url": "heroku/php"
|
||
}
|
||
],
|
||
"addons": [
|
||
"heroku-postgresql"
|
||
],
|
||
"env": {
|
||
"APP_KEY": {
|
||
"description": "Used for the auth system.",
|
||
"generator": "secret"
|
||
},
|
||
"APP_TIMEZONE": {
|
||
"description": "Application time zone.",
|
||
"value": "Etc/UTC"
|
||
},
|
||
"DB_CONNECTION": {
|
||
"description": "Database driver.",
|
||
"value": "pgsql"
|
||
},
|
||
"SCOUT_DRIVER": {
|
||
"description": "Search driver ('algolia', 'elastic', or 'null').",
|
||
"value": "null"
|
||
}
|
||
},
|
||
"scripts": {
|
||
"postdeploy": "php artisan migrate --force && php artisan user:add kcal kcal --name=Admin"
|
||
},
|
||
"success_url": "/"
|
||
}
|