-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
20 lines (20 loc) · 818 Bytes
/
appsettings.json
File metadata and controls
20 lines (20 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"ConnectionStrings": {
//For local development, use the following connection string:
//"DefaultConnection": "Server=localhost;Database=VideoGameDb;User Id=sa;Password=Welcome3#;TrustServerCertificate=True;"
//To run through Docker, use the following connection string:
"DefaultConnection": "Server=host.docker.internal;Database=VideoGameDb;User Id=sa;Password=Welcome3#;TrustServerCertificate=True;"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AppSettings": {
"Token": "MySuperSecurityKeyNeedsSostrongToCrackanditNeedstoBeVeryLengthyandNeedstohavesomenumricsandSpecialCharactersandItshouldbeSuperStrong",
"Audience": "http://localhost:5159",
"Issuer": "https://localhost:7158"
},
"AllowedHosts": "*"
}