2FAuth/app.json
2022-04-14 14:23:47 +02:00

47 lines
1.2 KiB
JSON

{
"name": "2FAuth",
"description": "A Web app to manage your Two-Factor Authentication (2FA) accounts and generate their security codes",
"keywords": [
"2fauth",
"2fa",
"2factor",
"Two-factor",
"Two-factor-authentication",
"otp",
"totp",
"hotp"
],
"website": "https://docs.2fauth.app",
"repository": "https://github.com/Bubka/2FAuth",
"success_url": "/register",
"scripts": {
"postdeploy": "php artisan passport:install;php artisan storage:link"
},
"env": {
"PASSPORT_PRIVATE_KEY": {
"description": "The RSA private key used to generate OAUTH security token",
"value": ""
},
"PASSPORT_PUBLIC_KEY": {
"description": "The public key derivated from your private key",
"value": ""
},
"APP_KEY": {
"generator": "secret"
},
"APP_NAME": "2FAuth",
"APP_ENV": "review",
"APP_DEBUG": "false",
"LOG_CHANNEL": "errorlog",
"DB_CONNECTION": "pgsql",
"TRUSTED_PROXIES": "*"
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/php"
}
]
}