Merge branch 'chore/cleanup' of https://github.com/cpvalente/ontime into chore/cleanup

This commit is contained in:
cv
2021-10-28 12:09:19 +02:00
19 changed files with 1068 additions and 497 deletions
+7 -5
View File
@@ -26,12 +26,14 @@ const nodePath =
const { startServer, startOSCServer, startOSCClient } = await import(
nodePath
);
// Start express server
loaded = startServer();
// Start OSC Server (API)
startOSCServer();
// Start OSC Client (Feedback)
startOSCClient();
await startOSCClient();
// Start express server
loaded = await startServer();
// Start OSC Server (API)
await startOSCServer();
} catch (error) {
console.log(error);
loaded = error;