Skip to content

Commit

Permalink
Add heroku app.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubka committed Apr 13, 2022
1 parent 3f2d3ca commit a2c9890
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"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 migrate:refresh;"
},
"env": {
"APP_KEY": {
"description": "The encryption key for your database and sessions.",
"value": "base64:OfTFROuxY2NHE321rcwz0N4UW/SSXWEjzxOGiQD7nCY="
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "13"
}
}
],
"buildpacks": [
{
"url": "heroku/php"
}
]
}

0 comments on commit a2c9890

Please sign in to comment.