Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 821 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 821 Bytes

scala-minesweeper-wui

This is a web project with play framework. The application is a user interface for minesweeper game. It connects to a running minesweeper game with actor configuration.

Running

The configuration for the connection to a running minesweeper core actor system is located in conf/application.conf under

akka {
  ...
  minesweeper {
    controllerActor = "akka.tcp://[email protected]:5555/user/controller"
    publisherActor = "akka.tcp://[email protected]:5555/user/publisher"
  }
}

Run this using sbt. If you downloaded this project from http://www.playframework.com/download then you'll find a prepackaged version of sbt in the project directory:

sbt run

And then go to http://localhost:9000 to see the running web application.