- Download the client from the releases page
- Install a webserver that supports webassembly. I use apache.
- Unzip all files from the release file into your public directory. On linux this is usually /var/www/html or /srv/http.
- Start your webserver and open 127.0.0.1/index.html. Other users will use your IP address.
- Enter the IP address of the server and start playing
- Make sure port 9002 is unblocked in your firewall
- Download the release file for your platform from the releases page
- Run the file you just downloaded. On Linux, you may need to
chmod +x
your file
- Install Rust following this guide
- Install wasm-pack using cargo install wasm-pack
- Clone this repo with
git clone https://github.com/SirAlienTheGreat/oped-game-v2
cd oped-game-v2/Client
wasm-pack build --target web
- The files you need to install using the method above are: answer-only.html, index.html, and the pkg directory
- Install Rust following this guide
- Clone this repo with
git clone https://github.com/SirAlienTheGreat/oped-game-v2
cd oped-game-v2/server
cargo build --release
- Your files will be in
target/release