From 46c3e3b0bab5daaa1119d16d562c36e5ea100b10 Mon Sep 17 00:00:00 2001 From: lightvector Date: Sun, 7 Feb 2016 04:56:25 +0000 Subject: [PATCH] Expose how sbt sets the port so that it's more obvious how to change it --- project/Build.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Build.scala b/project/Build.scala index 7fcd242..2fca385 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -70,7 +70,7 @@ object ArimaaServerBuild extends Build { //New commands in sbt commands ++= Seq(startServerProd, startServerTest) - ) ++ jetty() + ) ++ jetty(port=8080) ) //Start the server in production mode (currently, this affects how we initialize the DB - see DatabaseConfig.scala)