WebGPU Voxel Game
at main 31 lines 409 B view raw
1#!/usr/bin/env just --justfile 2 3release: 4 cargo build --release 5 6lint: 7 cargo clippy 8 9pack: 10 wasm-pack build --target web 11 12# Requires RustRover 13file_dir := "http://localhost:8080" 14 15browse: 16 just _browse-{{os()}} 17 php -S localhost:8080 18 19_browse-macos: 20 open {{file_dir}} 21 22_browse-linux: 23 xdg-open {{file_dir}} 24 25_browse-windows: 26 start {{file_dir}} 27 28 29web: 30 just pack 31 just browse