From 855374abdecab895f7ad21edb72fa60ddceae3b8 Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Thu, 14 Apr 2022 14:21:38 +0200 Subject: [PATCH] Pass passport RSA keys as env vars --- app.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app.json b/app.json index af044466..4f3b164f 100644 --- a/app.json +++ b/app.json @@ -18,6 +18,14 @@ "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": "secret" + }, + "PASSPORT_PUBLIC_KEY": { + "description": "The public key derivated from your private key", + "value": "secret" + }, "APP_KEY": { "generator": "secret" },