File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1+ import com .typesafe .config ._
12
23name := " delphi-management"
34
@@ -14,8 +15,12 @@ lazy val management = (project in file(".")).enablePlugins(SbtWeb).enablePlugins
1415 buildInfoPackage := " de.upb.cs.swt.delphi.management"
1516 )
1617
17- PlayKeys .devSettings := Seq (" play.server.http.port" -> " 8082" )
18+ val conf = ConfigFactory .parseFile(new File (" conf/application.conf" )).resolve()
19+ val appPortManagement = conf.getString(" app.portManagement" )
1820
21+ PlayKeys .devSettings := Seq (
22+ " play.server.http.port" -> appPortManagement
23+ )
1924pipelineStages := Seq (digest,gzip)
2025
2126resolvers += Resolver .sonatypeRepo(" snapshots" )
Original file line number Diff line number Diff line change @@ -355,4 +355,6 @@ play.i18n.langs = [ "en" ]
355355play.modules.enabled += "module.Module"
356356play.http.errorHandler = "utils.ErrorHandler"
357357
358+ app.portManagement = 8083
359+
358360include "silhouette.conf"
You can’t perform that action at this time.
0 commit comments