Dynamic port config

This commit is contained in:
Przemek Dragańczuk 2020-02-14 18:42:21 +01:00
parent 8a264c133c
commit 0f41363740

View File

@ -15,6 +15,8 @@ public class App {
staticFiles.location("/public"); staticFiles.location("/public");
} }
port(Integer.parseInt(System.getProperty("port", "4567")));
get("/", (req, res) -> { get("/", (req, res) -> {
res.redirect("/index.html"); res.redirect("/index.html");
return "Redirect"; return "Redirect";