Skip to content

Commit

Permalink
Use assembly plugin for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Feb 2, 2014
1 parent b97afe9 commit 79c0421
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ codingteam.org.ru
This is the code meant to service the http://codingteam.org.ru site.

### Deployment
_To be announced..._
sbt assembly
3 changes: 3 additions & 0 deletions assembly.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import AssemblyKeys._ // put this at the top of the file

assemblySettings
4 changes: 3 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
addSbtPlugin("io.spray" % "sbt-revolver" % "0.7.1")
addSbtPlugin("io.spray" % "sbt-revolver" % "0.7.1")

addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.10.2")
2 changes: 1 addition & 1 deletion src/main/scala/ru/org/codingteam/site/Application.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ object Application extends App {

implicit val timeout = Timeout(5.seconds)

IO(Http) ? Http.Bind(service, interface = "localhost", port = 8080)
IO(Http) ? Http.Bind(service, interface = "0.0.0.0", port = 80)
}

0 comments on commit 79c0421

Please sign in to comment.