-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Development.json
More file actions
90 lines (90 loc) · 2.39 KB
/
Copy pathappsettings.Development.json
File metadata and controls
90 lines (90 loc) · 2.39 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"HealthChecks": {
"Environment": "Development"
},
"ConnectionStrings": {
"ApplicationConfigurationConnectionString": "Server=127.0.0.1;Port=5432;Database=Facware;User Id=postgres;Password=postgres;"
},
"Cors": {
"AllowedOrigin": [
"http://localhost:4200",
"http://localhost:4201",
"http://localhost:4202"
]
},
"SwaggerConfiguration": {
"SwaggerJSONEndpoints": "swagger/v1/swagger.json",
"Title": "Facware Base",
"Version": "V1.0",
"Description": "Facware base project.",
"TermsOfService": "https://luisespinoza.facware.com/",
"ContactName": "luis.espinoza@afacware.com respinozabarboza@gmail.com",
"ContactEmail": "luis.espinoza@afacware.com respinozabarboza@gmail.com",
"LicenseName": "MIT",
"LicenseUrl": "https://opensource.org/licenses/MIT"
},
"Serilog": {
"LevelSwitches": {
"$controlSwitch": "Information"
},
"Properties": {
"Application": "FacwareBase"
},
"MinimumLevel": {
"ControlledBy": "$controlSwitch",
"Override": {
"Microsoft": "Information",
"System": "Information"
},
"Default": "Information"
},
"WriteTo": [
{
"Name": "AmazonCloudWatch",
"Args": {
"rollingInterval": "Day",
"restrictedToMinimumLevel": "Debug",
"logGroup": "FacwareBase-API",
"logStreamPrefix": "environment/component"
}
}
],
"Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ]
},
"Authentication": {
"AuthenticationMode": "Okta"
},
"Okta": {
"OktaDomain": "https://{replace-with-okta-domain}.okta.com/",
"ClientId": "{replace-with-okta-client-id}",
"Authority": "https://{replace-with-okta-domain}.okta.com/oauth2/default",
"Audience": "api://default",
"RequireHttpsMetadata": false
},
"Jwt": {
"Issuer": "http://localhost:5000",
"Secret": "veryVerySuperSecretKey",
"ExpirationInDays": 30,
"ExpirationInHours": 4
},
"AWS": {
"Profile": "my-profile",
"Region": "us-east-1"
},
"SessionAwsCredentialsOptions": {
"AwsAccessKeyId": "",
"AwsSecretAccessKey": "",
"Token": ""
},
"FileStorageOptions": {
"TemporalStorage": "/tmp/"
}
}