Run webserver

This commit is contained in:
Kieran 2022-08-30 22:07:10 +01:00
parent 512955219e
commit ebe5a0e106
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -8,6 +8,11 @@ JsonConvert.DefaultSettings = () => VoidStartup.ConfigJsonSettings(new());
RunModes mode = args.Length == 0 ? RunModes.All : 0;
if (args.Contains("--run-webserver"))
{
mode |= RunModes.Webserver;
}
if (args.Contains("--run-migrations"))
{
mode |= RunModes.Migrations;