Bladeren bron

Add heroku app.json

Bubka 3 jaren geleden
bovenliggende
commit
a2c9890cd5
1 gewijzigde bestanden met toevoegingen van 39 en 0 verwijderingen
  1. 39 0
      app.json

+ 39 - 0
app.json

@@ -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"
+      }
+    ]
+  }