move port 8080

This commit is contained in:
monoid 2021-01-06 20:17:02 +09:00
parent 4e03649880
commit d10f2f8664

View File

@ -59,7 +59,7 @@ async function main(){
app.use(router.allowedMethods());
console.log("start server");
app.listen(3002);
app.listen(8080,"0.0.0.0");
return app;
}
main();