-
Notifications
You must be signed in to change notification settings - Fork 25
/
appsettings.json
33 lines (33 loc) · 1.09 KB
/
appsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"Data": {
// Provider suppoted databases: "sqlserver", "postgress"
//"Provider": "sqlite",
//"DefaultConnection": {
// "databaseName": "realworld.db"
//}
"Provider": "sqlserver",
"DefaultConnection": {
"ConnectionString": "Server=(localdb)\\mssqllocaldb;Database=genvue;Trusted_Connection=True;MultipleActiveResultSets=true"
}
// simply uncomment below and comment section up to switch between databases
//"Provider": "postgress",
//"DefaultConnection": {
// "ConnectionString": "Host=T;Port=5432;Username=postgres;Password=postgres;Database=genvue"
//}
},
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
},
"UploadSettings": {
"uploadDirectory": "UploadedFiles",
"privateRoot": "_privateFiles",
"groupRoot": "_groupsFiles",
"userMaxConcurrentUploads": 4,
"defaultQuota": 1073741824
}
}