woz 1.3.0

Woz is a WebAssembly progressive web app (PWA) toolchain for deploying performant mobile apps distributed for free with a hyperlink.
1
2
3
4
5
6
7
# Set environment variables to production values
set -a; . ../env-prod; set +a
cargo build --release
# Copy locally
cp ./target/release/woz /usr/local/bin/woz
# Go back to local development environment variables
set -a; . ../env-dev; set +a