Skip to content

Commit

Permalink
Add env files
Browse files Browse the repository at this point in the history
  • Loading branch information
t-mbindra committed Jul 30, 2024
1 parent b89442c commit e34f3ea
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
18 changes: 18 additions & 0 deletions samples/msteams-FAQPlus/env/.env.dev.user
Original file line number Diff line number Diff line change
@@ -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
9 changes: 9 additions & 0 deletions samples/msteams-FAQPlus/env/.env.local
Original file line number Diff line number Diff line change
@@ -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=
18 changes: 18 additions & 0 deletions samples/msteams-FAQPlus/env/.env.local.user
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e34f3ea

Please sign in to comment.