Web-based version of the Ticket To Ride board game, by Alan R. Moon.
Note This is still under development.
The steps below assume you have a recent version of Rust
(specifically cargo
), and of npm
.
- Compile the front-end.
$ cd frontend
$ npm i
$ npm run build
- Run the web-server.
$ cd backend/web-server
# To run server in debug mode.
$ cargo run
# To run server in release mode.
$ cargo run --release
By default, the server will run at http://localhost:8000.