feat(*): Add base project files

This commit is contained in:
2021-03-14 12:57:18 +00:00
parent 64b6a84252
commit 1b5a86a401
141 changed files with 45005 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"ConnectionStrings": {
"DefaultConnection": "User ID=postgres;Password=password-goes-here;Host=localhost;Port=5433;Database=database-name-goes-here;Pooling=true;"
},
"ElasticConfiguration": {
"Uri": "http://your-url-goes-here:9200"
},
"EmailConfiguration": {
"From": "your-email@gmail.com",
"SmtpServer": "smtp.gmail.com",
"Port": 465,
"Username": "your-email@gmail.com",
"Password": "your-password-goes-here"
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
}
},
"AllowedHosts": "*"
}