-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
38 lines (38 loc) · 1.06 KB
/
Copy pathappsettings.json
File metadata and controls
38 lines (38 loc) · 1.06 KB
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
34
35
36
37
38
{
"App": {
"Urls": "http://*:8080",
"MaxRows": 1000,
"QueryTimeoutSeconds": 30
},
"Databases": [
{
"Name": "sampleSql",
"Provider": "SqlServer",
"ConnectionString": "Server=localhost;Database=testdb;User Id=sa;Password={password};TrustServerCertificate=true;",
"PasswordEnvVar": "DB_SAMPLESQL_PASSWORD"
},
{
"Name": "sampleOracle",
"Provider": "Oracle",
"ConnectionString": "Data Source=localhost:1521/ORCL;User Id=myuser;Authentication=Kerberos;"
},
{
"Name": "samplePostgres",
"Provider": "Postgres",
"ConnectionString": "Host=localhost;Database=testdb;Username=postgres;Password={password};",
"PasswordEnvVar": "DB_SAMPLEPG_PASSWORD"
},
{
"Name": "sampleMySql",
"Provider": "MySql",
"ConnectionString": "Server=localhost;Database=testdb;User Id=root;Password={password};",
"PasswordEnvVar": "DB_SAMPLEMYSQL_PASSWORD"
}
],
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}