Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
275 changed files with 13896 additions and 98 deletions
Showing only changes of commit 8250957b85 - Show all commits
.env
.gitea/workflows
.gitignore
ApiDto
Backend.slnDockerfile
Endpoint
Backend.http
Common
Configuration
Controllers
Endpoint.csprojProgram.cs
Sync
WeatherForecast.cs
wwwroot
css
README.md
Security
SqlData
Application
Application.csproj
Common
Cqrs
DependencyInjection.cs
Interfaces
Domain
Migrations
Persistence
nuget.config

@ -76,9 +76,7 @@ public class Program
policy.AllowAnyMethod(); policy.AllowAnyMethod();
policy.AllowAnyHeader(); policy.AllowAnyHeader();
policy.AllowCredentials(); policy.AllowCredentials();
#if DEBUG policy.SetIsOriginAllowed(_ => true);
policy.WithOrigins("http://localhost:4200");
#endif
}); });
}); });