We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c286b54 commit c054e13Copy full SHA for c054e13
publish/appsettings.example.json
@@ -0,0 +1,25 @@
1
+{
2
+ "ConnectionStrings": {
3
+ "DefaultConnection": "Server=NameOfServer,WhichPort;Database=nameOfTheDatabse;User Id=YOUR_ID;Password=YOUR_PASSWORD;MultipleActiveResultSets=true;Encrypt=False;TrustServerCertificate=True"
4
+ },
5
+ "EmailSettings": {
6
+ "SmtpServer": "smtp.gmail.com",
7
+ "SmtpUserName": "mail@where.com",
8
+ "SmtpPassword": "password",
9
+ "SmtpServerPort": 587,
10
+ "EnableSsl": true,
11
+ "EmailDisplayName": "Name",
12
+ "SendersName": "Name"
13
14
+ "Logging": {
15
+ "LogLevel": {
16
+ "Default": "Trace",
17
+ "Microsoft": "Warning",
18
+ "Microsoft.Hosting.Lifetime": "Information"
19
20
+ "NLog": {
21
+ "RemoveLoggerFactoryFilter": true
22
+ }
23
24
+ "AllowedHosts": "*"
25
+}
0 commit comments