Display port in thingy
continuous-integration/drone/push Build is passing Details

main
nightly 2022-10-20 10:11:45 +02:00
parent 3fa2df5bd0
commit 61e6789175
2 changed files with 2 additions and 2 deletions

View File

@ -51,6 +51,6 @@ export function startWebserver(config: any) {
});
app.listen(config.port, "0.0.0.0", () => {
console.log("Webserver running on port 3430");
console.log(`Webserver running on port ${config.port}`);
});
}

View File

@ -3,7 +3,7 @@
"webapp": {
"cookieSecure": false,
"port": 3440,
"port": 3430,
"redirectURI": "http://localhost:6000/auth/callback"
},