Skip to content

Commit

Permalink
push appsettings.Development.json file otherwise build fails
Browse files Browse the repository at this point in the history
  • Loading branch information
singhk97 committed Dec 1, 2023
1 parent 7a2761e commit fc146a7
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
1 change: 0 additions & 1 deletion dotnet/samples/06.auth.teamsSSO.bot/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ build
appPackage/build
env/.env.*.user
env/.env.local
appsettings.Development.json
.deployment

# User-specific files
Expand Down
17 changes: 17 additions & 0 deletions dotnet/samples/06.auth.teamsSSO.bot/appsettings.Development.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Information",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"BOT_ID": "",
"BOT_PASSWORD": "",
"BOT_DOMAIN": "",
"AAD_APP_CLIENT_ID": "",
"AAD_APP_CLIENT_SECRET": "",
"AAD_APP_TENANT_ID": "",
"AAD_APP_OAUTH_AUTHORITY_HOST": ""
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,4 @@ appPackage/build
build
.deployment
# Teams Toolkit Local Development
appsettings.Development.json
env/.env.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Information",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"BOT_ID": "",
"BOT_PASSWORD": "",
"BOT_DOMAIN": "",
"AAD_APP_CLIENT_ID": "",
"AAD_APP_CLIENT_SECRET": "",
"AAD_APP_TENANT_ID": "",
"AAD_APP_OAUTH_AUTHORITY_HOST": ""
}

0 comments on commit fc146a7

Please sign in to comment.