forked from SavageLearning/Machete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.json
35 lines (35 loc) · 1.32 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
34
35
{
"AllowedHosts": "*",
"Tenants": {
"allowDefault": true,
"tenants": {
"default": "default",
"blueprint.navaja.net": "blueprint",
"sandbox.navaja.net": "sandbox"
}
},
"ConnectionStrings": {
"default": "Server=machete_sqlserver_1,1433; Database=machete_db; User=SA; Password=passw0rD!; Persist Security Info=true;",
"defaultReadOnly": "Server=machete_sqlserver_1,1433; Database=machete_db; User=readonlylogin; Password=@testPassword1;",
"blueprint": "Server=machete_sqlserver_1,1433; Database=blueprint_db; User=SA; Password=passw0rD!; Persist Security Info=true;",
"blueprintReadOnly": "Server=machete_sqlserver_1,1433; Database=blueprint_db; User=readonlylogin; Password=@testPassword1;",
"sandbox": "Server=machete_sqlserver_1,1433; Database=sandbox_db; User=SA; Password=passw0rD!; Persist Security Info=true;",
"sandboxReadOnly": "Server=machete_sqlserver_1,1433; Database=sandbox_db; User=readonlylogin; Password=@testPassword1;"
},
"Timezones": {
"default": "America/Los_Angeles",
"blueprint": "America/New_York",
"sandbox": "UTC"
},
"Logging": {
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
},
"JwtIssuerOptions": {
"Issuer": "machete",
"Audience": "machete-ui-local-embedded"
}
}