-
-
Notifications
You must be signed in to change notification settings - Fork 154
/
app.json
39 lines (39 loc) · 968 Bytes
/
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
38
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;php artisan passport:install;php artisan storage:link"
},
"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"
}
]
}