Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 279 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 279 Bytes

For desktop:

cargo run --release

For web:

cargo build --release --target=wasm32-unknown-unknown && \
mkdir -p target/deploy && \
cp target/wasm32-unknown-unknown/release/mazes.wasm target/deploy && \
cp static/* target/deploy && \
basic-http-server target/deploy