From e34f3ea88d97a58864fb81723a7fe0d385ffb549 Mon Sep 17 00:00:00 2001 From: Mehak Bindra Date: Tue, 30 Jul 2024 14:36:56 -0700 Subject: [PATCH] Add env files --- samples/msteams-FAQPlus/env/.env.dev.user | 18 ++++++++++++++++++ samples/msteams-FAQPlus/env/.env.local | 9 +++++++++ samples/msteams-FAQPlus/env/.env.local.user | 18 ++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 samples/msteams-FAQPlus/env/.env.dev.user create mode 100644 samples/msteams-FAQPlus/env/.env.local create mode 100644 samples/msteams-FAQPlus/env/.env.local.user diff --git a/samples/msteams-FAQPlus/env/.env.dev.user b/samples/msteams-FAQPlus/env/.env.dev.user new file mode 100644 index 0000000000..99fff88d22 --- /dev/null +++ b/samples/msteams-FAQPlus/env/.env.dev.user @@ -0,0 +1,18 @@ +# This file includes environment variables that will not be committed to git by default. +# Secrets. Keys prefixed with `SECRET_` will be masked in Teams Toolkit logs. + +# This is automatically updated. +SECRET_BOT_PASSWORD= +TEAMS_APP_UPDATE_TIME= + +# Provide the channel id +TEAMS_CHANNEL_ID= + +# Provide the following key/endpoints. +SECRET_AZURE_OPENAI_KEY= +SECRET_AZURE_OPENAI_ENDPOINT= +SECRET_AZURE_SEARCH_ENDPOINT= +SECRET_AZURE_SEARCH_KEY= + +AZURE_SEARCH_INDEX=faq-index +AZURE_OPENAI_MODEL=gpt-4o \ No newline at end of file diff --git a/samples/msteams-FAQPlus/env/.env.local b/samples/msteams-FAQPlus/env/.env.local new file mode 100644 index 0000000000..841befeb28 --- /dev/null +++ b/samples/msteams-FAQPlus/env/.env.local @@ -0,0 +1,9 @@ +TEAMSFX_ENV=local +APP_NAME_SUFFIX=local + +# Generated during provision, you can also add your own variables. +BOT_ID= +TEAMS_APP_ID= +BOT_DOMAIN= +BOT_ENDPOINT= +TEAMS_APP_TENANT_ID= \ No newline at end of file diff --git a/samples/msteams-FAQPlus/env/.env.local.user b/samples/msteams-FAQPlus/env/.env.local.user new file mode 100644 index 0000000000..3ce9a5a884 --- /dev/null +++ b/samples/msteams-FAQPlus/env/.env.local.user @@ -0,0 +1,18 @@ +# This file includes environment variables that will not be committed to git by default. +# Secrets. Keys prefixed with `SECRET_` will be masked in Teams Toolkit logs. + +# This is automatically updated. +SECRET_BOT_PASSWORD= +TEAMS_APP_UPDATE_TIME= + +# Provide the channel id +TEAMS_CHANNEL_ID= + +# Provide the following key/endpoints. +SECRET_AZURE_OPENAI_KEY= +SECRET_AZURE_OPENAI_ENDPOINT= +SECRET_AZURE_SEARCH_ENDPOINT= +SECRET_AZURE_SEARCH_KEY= + +AZURE_SEARCH_INDEX=faq-index +AZURE_OPENAI_MODEL=gpt-4o \ No newline at end of file