Keter is a roguelike game based on the SCP Foundation universe. It works in browser.
The currently released version is published online at keter.fornever.me. Game design documents section could provide useful information about the game.
If you want to build the game yourself, please read the following sections.
The game is written in Scala programming language and uses sbt for build process management. Build prerequisites:
To build the application, execute the following command in your terminal:
$ sbt site
After that, open target/site/index.html
file with your Web browser.
You may publish the target/site
directory if you want to provide game access
to the other players.
It's considered useful to continuously run the unit tests while changing the game files. That could be achieved using the following command:
$ sbt ~;test;site
Keter is licensed under the terms of MIT License. See License.md
file for details.