fixed setup flow

pull/62/head
tycrek 3 years ago
parent 589c85d7e5
commit c188a7dacd
No known key found for this signature in database
GPG Key ID: 25D74F3943625263

@ -9,7 +9,11 @@ try {
}
// Run first time setup if using Docker (pseudo-process, setup will be run with docker exec)
if (doSetup) doSetup();
if (doSetup) {
doSetup();
// @ts-ignore
return;
}
// Load the config
const { host, port, useSsl, isProxied, s3enabled, frontendName, indexFile } = require('../config.json');

Loading…
Cancel
Save