Client-server web app using Miso and WebSockets: move inside the maze and meet other players.
- run the websocket server locally:
docker run --rm -it -p 9000:9000 juliendehos/miso-maze:latest
- in a browser, go to https://juliendehos.github.io/miso-maze/
- frontend:
nix develop .#wasm
make update # update package repository
make test # build and run tests
make build # build frontend app
make serve # run http server
- backend:
nix-shell
cabal test # build and run tests
cabal run # build and run ws server
- backend (docker):
nix-build docker.nix # build docker image
docker load < result # load image into docker
docker run --rm -it -p 9000:9000 miso-maze:latest # run docker image
The isomorphic version: miso-maze-iso.
