-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Test.json
More file actions
68 lines (68 loc) · 2.62 KB
/
Copy pathappsettings.Test.json
File metadata and controls
68 lines (68 loc) · 2.62 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"ConnectionStrings": {
"DatabaseConnection": "Server=SomeServerName;Integrated Security=false;encrypt=false;MultipleActiveResultSets=true;Initial Catalog=SomeDatabase;user id=SomeUserID;password=SomePasswordStoredInSecrets;"
},
"DefaultProjectSettings": {
"ProjectName": "MBDEVpro",
"Environment": "Test",
"Description": "MBDEVpro",
"SessionTimeout": "600000",
"ApplicationURL": "https://www.MBDEVpro.com",
"DataTableLengthMenu": "5,10,25,50,100,-1",
"DefaultGridPageCount": "10",
"CurrentProject": "MBDEVpro",
"LogInExpireTimeSpan": "45",
"CookieName": "MBDEVproAuthentication",
"SessionName": ".AspNetCore.Session.MBDEVpro",
"KeyStorageLocation": "\\\\Location\\MBDEVpro_Test\\keys",
"UpdatePasswordURL": "",
"UserName": "...",
"Password": "...",
"AZURE_ENCRYPT_CLIENTID": "...",
"AZURE_ENCRYPT_CLIENTSECRET": "...",
"AZURE_ENCRYPT_TENANTID": "..."
},
"CustomerServiceSettings": {
"ISBURL": "https://www.MBDEVpro.com/MBDEVpro_Customers/api/",
"CustomerControllerCreateCustomer": "Customer/CreateCustomer",
"CustomerControllerUpdateCustomer": "Customer/UpdateCustomer",
"CustomerControllerDeleteCustomer": "Customer/DeleteCustomer",
"CustomerControllerGetCustomer": "Customer/GetCustomer",
"CustomerControllerGetAllCustomers": "Customer/GetAllCustomers",
"CustomerControllerCustomersManagement": "Customer/CustomerGridList",
"CustomerTypeControllerGetCustomerTypes": "CustomerType/GetCustomerTypes",
"CustomerTypeControllerGetCustomerType": "CustomerType/GetCustomerType",
"CustomerTypeControllerCreateCustomerType": "CustomerType/CreateCustomerType",
"CustomerTypeControllerUpdateCustomerType": "CustomerType/UpdateCustomerType",
"CustomerTypeControllerDeleteCustomerType": "CustomerType/DeleteCustomerType"
},
"EmailAPISettings": {
"API_URL": "https://www.MBDEVpro/EmailManager/api/",
"SendEmail": "Email/SendEmail/sendemail",
"SendEmailWithAttachment": "Email/SendEmailAttachment/sendemailattachment"
},
"AllowedHosts": "*",
"Serilog": {
"Using": [],
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"Enrich": [ "FromLogContext", "WithMachineName", "WithProcessId", "WithThreadId" ],
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "C:\\Logs\\MBDEVpro\\log-.json",
"formatter": "Serilog.Formatting.Json.JsonFormatter, Serilog",
"rollingInterval": "Day",
"retainedFileCountLimit": 5,
"rollOnFileSizeLimit": true
}
}
]
}
}