woz 1.2.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
8
9
10
11
12
13
14
15
# Set environment variables to production values
set -a; . ../env-prod; set +a
cargo build --release
# Copy to site
cp target/release/woz ../site/static/install/macos/woz
# Copy locally
cp ./target/release/woz /usr/local/bin/woz
# Publish to crates.io
cargo publish --allow-dirty
# Deploy the site so the new version is available
cd ../site
./scripts/deploy
cd ../cli
# Go back to local development environment variables
set -a; . ../env-dev; set +a