Skip to content

Commit

Permalink
add production
Browse files Browse the repository at this point in the history
  • Loading branch information
Mo7ammedd committed Sep 23, 2024
1 parent 01372e3 commit e85eadd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ bld/
[Ll]ogs/
# Ignore appsettings.development
appsettings.Development.json

# Visual Studio 2015/2017 cache/options directory
.vs/
.idea

# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

Expand Down
21 changes: 11 additions & 10 deletions BookStore.Web/appsettings.Production.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "DefaultConnection_From_Env"
"DefaultConnection": "DefaultConnection_From_Env"
},
"Stripe": {
"PublishableKey": "Stripe:PublishableKey_From_Env",
"SecretKey": "Stripe:SecretKey_From_Env"
"PublishableKey": "Stripe:PublishableKey_From_Env",
"SecretKey": "Stripe:SecretKey_From_Env"
},
"ExternalAuthentication:Facebook": {
"AppId": "Facebook:AppId_From_Env",
"AppSecret": "Facebook:AppSecret_From_Env"
"AppId": "Facebook:AppId_From_Env",
"AppSecret": "Facebook:AppSecret_From_Env"
}
}
}

0 comments on commit e85eadd

Please sign in to comment.