Added security logs. Removed unsued log models. Added dynamisc config load system for development

This commit is contained in:
Marcel Baumgartner
2023-07-19 20:07:57 +02:00
parent 6a30db07a7
commit 1cd0f0f96f
26 changed files with 1362 additions and 536 deletions

View File

@@ -1,6 +1,8 @@
{
"profiles": {
"Moonlight": {
"profiles":
{
"Default":
{
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
@@ -10,41 +12,29 @@
"applicationUrl": "http://moonlight.testy:5118;https://localhost:7118;http://localhost:5118",
"dotnetRunMessages": true
},
"Sql Debug": {
"Live DB":
{
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ML_SQL_DEBUG": "true",
"ML_DEBUG": "true"
"ML_DEBUG": "true",
"ML_CONFIG_PATH": "storage\\configs\\live_config.json"
},
"applicationUrl": "http://moonlight.testy:5118;https://localhost:7118;http://localhost:5118",
"dotnetRunMessages": true
},
"Discord Bot": {
"Dev DB 1":
{
"commandName": "Project",
"launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ML_SQL_DEBUG": "true",
"ML_DEBUG": "true"
},
"applicationUrl": "http://moonlight.testy:5118;https://localhost:7118;http://localhost:5118",
"dotnetRunMessages": true
},
"Watch": {
"commandName": "Executable",
"executablePath": "dotnet",
"workingDirectory": "$(ProjectDir)",
"hotReloadEnabled": true,
"hotReloadProfile": "aspnetcore",
"commandLineArgs": "watch run",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ML_DEBUG": "true"
"ML_DEBUG": "true",
"ML_CONFIG_PATH": "storage\\configs\\dev_1_config.json"
},
"applicationUrl": "http://moonlight.testy:5118;https://localhost:7118;http://localhost:5118"
"applicationUrl": "http://moonlight.testy:5118;https://localhost:7118;http://localhost:5118",
"dotnetRunMessages": true
}
}
}