2FAuth/app.json

75 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2022-04-13 13:39:58 +00:00
{
"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": {
2022-04-14 10:17:06 +00:00
"postdeploy": "php artisan passport:install;php artisan storage:link"
2022-04-13 13:39:58 +00:00
},
"env": {
2022-04-15 11:03:44 +00:00
"APP_KEY": {
"generator": "secret"
},
"APP_NAME": "2FAuth",
"APP_ENV": "review",
"APP_DEBUG": "false",
"LOG_CHANNEL": "stderr",
"DB_CONNECTION": "pgsql",
"TRUSTED_PROXIES": "*",
2022-04-14 12:21:38 +00:00
"PASSPORT_PRIVATE_KEY": {
"description": "The RSA private key used to generate OAUTH security token",
2022-04-14 12:23:47 +00:00
"value": ""
2022-04-14 12:21:38 +00:00
},
"PASSPORT_PUBLIC_KEY": {
"description": "The public key derivated from your private key",
2022-04-14 12:23:47 +00:00
"value": ""
2022-04-14 12:21:38 +00:00
},
2022-04-15 11:03:44 +00:00
"MAIL_HOST": {
"value": "",
"required": false
2022-04-14 09:35:45 +00:00
},
2022-04-15 11:03:44 +00:00
"MAIL_PORT": {
"value": "",
"required": false
},
"MAIL_USERNAME": {
"value": "",
"required": false
},
"MAIL_PASSWORD": {
"value": "",
"required": false
},
"MAIL_ENCRYPTION": {
"value": "",
"required": false
},
"MAIL_FROM_NAME": {
"value": "2FAuth",
"required": false
},
"MAIL_FROM_ADDRESS": {
"value": "no-reply@heroku.com",
"required": false
}
2022-04-13 13:39:58 +00:00
},
"addons": [
"heroku-postgresql"
2022-04-13 13:39:58 +00:00
],
"buildpacks": [
{
"url": "heroku/php"
}
]
}