From bdd84735dd54b5bdd1c65de66c347973506fb915 Mon Sep 17 00:00:00 2001 From: Bradley Schofield Date: Wed, 23 Aug 2023 14:00:21 +0100 Subject: [PATCH] Add Migrations and Assistant env vars --- app/config/variables.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/app/config/variables.php b/app/config/variables.php index b1e6a508f9..c663d48a2e 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -1021,4 +1021,31 @@ return [ ], ], ], + [ + 'category' => 'Migrations', + 'description' => '', + 'variables' => [ + [ + 'name' => '_APP_MIGRATIONS_FIREBASE_CLIENT_ID', + 'description' => 'Google OAuth client ID. You can find it in your GCP application settings.', + 'introduction' => '1.4.0', + ], + [ + 'name' => '_APP_MIGRATIONS_FIREBASE_CLIENT_SECRET', + 'description' => 'Google OAuth client secret. You can generate secrets in your GCP application settings.', + 'introduction' => '1.4.0', + ] + ] + ], + [ + 'category' => 'Assistant', + 'description' => '', + 'variables' => [ + [ + 'name' => '_APP_ASSISTANT_OPENAI_API_KEY', + 'description' => 'OpenAI API key. You can find it in your OpenAI application settings.', + 'introduction' => '1.4.0', + ] + ] + ] ];