This commit is contained in:
2021-03-15 20:42:44 +00:00
parent 63c4bc7e4f
commit 61bec07129
2 changed files with 7 additions and 3 deletions

2
.vscode/launch.json vendored
View File

@@ -49,7 +49,7 @@
//TRANSLATION MUST BE en for Integration TESTING
//"AYANOVA_PERMANENTLY_ERASE_DATABASE": "true",
"AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=raven;Database=AyaNova;",
"AYANOVA_USE_URLS": "http://*:7575;",
// "AYANOVA_USE_URLS": "http://*:7575;",
"AYANOVA_FOLDER_USER_FILES": "c:\\temp\\RavenTestData\\userfiles",
"AYANOVA_FOLDER_BACKUP_FILES": "c:\\temp\\RavenTestData\\backupfiles",
"AYANOVA_FOLDER_TEMPORARY_SERVER_FILES": "c:\\temp\\RavenTestData\\tempfiles",

View File

@@ -666,8 +666,12 @@ namespace AyaNova
_newLog.LogInformation("Boot complete - server open");
//flag in console that server is open
Console.WriteLine("BOOT: COMPLETED - SERVER IS NOW OPEN");
Console.WriteLine("(ctrl-c here will force stop AyaNova server. Controlled shut down via AyaNova APP Operations ServerState page)");
Console.WriteLine("-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-");
Console.WriteLine("BOOT: COMPLETED - SERVER OPEN");
Console.WriteLine($"AYANOVA_USE_URLS setting: \"{ServerBootConfig.AYANOVA_USE_URLS}\"");
Console.WriteLine("Controlled shutdown: use AyaNova App. and \"Operations\" -> \"ServerState\" form");
Console.WriteLine("Forced immediate shutdown: Ctrl-c key combination");
Console.WriteLine("-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-");
}