-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Development.json
More file actions
27 lines (27 loc) · 967 Bytes
/
appsettings.Development.json
File metadata and controls
27 lines (27 loc) · 967 Bytes
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
{
"DetailedErrors": true,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"Connection": {
"DatabaseType": "InMemory",
"ResetDatabase": true,
"DatabaseContentFile": "{filePath}"
},
"ConnectionStrings": {
"SqliteDatabase": "Data Source=timesup.db",
"SqlServerDatabase": "Data Source=.\\SQLEXPRESS;Initial Catalog=Test;Integrated Security=True",
"SqlServerDatabaseLinux": "Server=localhost;Database=Test;User Id=SA;Password=timesup",
"SqlServerDatabaseSqlExpress": "Data Source=.\\SQLEXPRESS;Initial Catalog=Test;Integrated Security=True",
"PostgresDatabase": "Host=localhost;Database=Test;Username=timesup;Password=timesup",
"CosmosDbEndpoint": "https://{serverName}.documents.azure.com:443/",
"CosmosDbAccountKey": "",
"CosmosDbDatabase": "{database}"
},
"GameCleaningInterval": "60000",
"GameDelayBeforeCleanup" : "300000"
}