calories/run.sh

12 lines
172 B
Bash
Raw Normal View History

#!/usr/bin/env bash
cd shared || exit;
cargo build || exit;
cd ..;
cd browser || exit;
wasm-pack build --target web || exit;
cd ..;
cd server || exit;
cargo run || exit;