Skip to content

Commit

Permalink
chore: Adding default value to "ConnectionStrings:DefaultConnection" …
Browse files Browse the repository at this point in the history
…(to connect to the database from docker-compose) and a fake value to "TokenConfigurations:SecretJwtKey"
  • Loading branch information
henriqueholtz committed Apr 13, 2024
1 parent 122ea23 commit fe5c895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ShareBook/ShareBook.Api/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"ConnectionStrings": {
"DefaultConnection": ""
"DefaultConnection": "Server=127.0.0.1;Database=master;User=sa;Password=weWkh]6qA3jk;TrustServerCertificate=True;"
},
"TokenConfigurations": {
"Audience": "",
"Issuer": "",
"Seconds": 3600,
"SecretJwtKey": ""
"SecretJwtKey": "FakeValue"
},
"Logging": {
"LogLevel": {
Expand Down

0 comments on commit fe5c895

Please sign in to comment.