cd contrib; make reinstall
This commit is contained in:
parent
bdc974b29b
commit
198d5bc202
13 changed files with 61 additions and 23 deletions
|
|
@ -9,7 +9,10 @@ namespace Yavsc
|
|||
public static async Task Main(string[] args)
|
||||
{
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
builder.Configuration
|
||||
.AddJsonFile("appsettings-org.json", optional: false, reloadOnChange: false)
|
||||
.AddJsonFile($"appsettings-org.{builder.Environment.EnvironmentName}.json", optional: false, reloadOnChange: false)
|
||||
.AddEnvironmentVariables();
|
||||
var app = await builder
|
||||
.ConfigureWebAppServices()
|
||||
.ConfigurePipeline();
|
||||
|
|
|
|||
|
|
@ -35,8 +35,7 @@
|
|||
},
|
||||
"Smtp": {
|
||||
"Host": "[YOURSMTPHOST]",
|
||||
"Port": 25,
|
||||
"EnableSSL": false
|
||||
"Port": 465
|
||||
},
|
||||
"DataProtection": {
|
||||
"Keys": {
|
||||
Loading…
Add table
Add a link
Reference in a new issue