Skip to content

Commit 89c1c21

Browse files
committed
renamed app setting
1 parent 2162c79 commit 89c1c21

File tree

2 files changed

+38
-33
lines changed

2 files changed

+38
-33
lines changed

src/Web.Api/appsettings.Development.json

Lines changed: 0 additions & 33 deletions
This file was deleted.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"ConnectionStrings": {
3+
//"Database": "Host=postgres;Port=5432;Database=clean-architecture;Username=postgres;Password=postgres;Include Error Detail=true"
4+
// "Database": "Server=DERABOLA\\SQLEXPRESS01;Database=CleanArchtectureDb;TrustServerCertificate=True;Trusted_Connection=True;MultipleActiveResultSets=true"
5+
"Database": "Host=dpg-d0q4o0uuk2gs73a88dlg-a.oregon-postgres.render.com;Port=5432;Database=cleanarchitecture_db;Username=cleanarchitecture_db_user;Password=HVtq1I6k8xZzzLd1aJV7Nnv2qibhr7qo;SSL Mode=Require;Trust Server Certificate=true;"
6+
},
7+
"Serilog": {
8+
"Using": [
9+
"Serilog.Sinks.Console",
10+
"Serilog.Sinks.Seq"
11+
],
12+
"MinimumLevel": {
13+
"Default": "Information",
14+
"Override": {
15+
"Microsoft": "Information"
16+
}
17+
},
18+
"WriteTo": [
19+
{ "Name": "Console" },
20+
{
21+
"Name": "Seq",
22+
"Args": { "ServerUrl": "http://seq:5341" }
23+
}
24+
],
25+
"Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ]
26+
},
27+
"Jwt": {
28+
"Secret": "super-duper-secret-value-that-should-be-in-user-secrets",
29+
"Issuer": "clean-architecture",
30+
"Audience": "developers",
31+
"ExpirationInMinutes": 60
32+
},
33+
"Cloudinary": {
34+
"CloudName": "daqu2z2s0",
35+
"ApiKey": "453639517466785",
36+
"ApiSecret": "r0UqgfSQf7zhhh24rlJzwVmsL18"
37+
}
38+
}

0 commit comments

Comments
 (0)