Initial commit

This commit is contained in:
2026-01-18 15:39:46 +01:00
commit 587f2bd7e7
106 changed files with 14918 additions and 0 deletions

13
build-wasm.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
set -e
echo "Building WASM..."
cargo build --target wasm32-unknown-unknown --release --no-default-features
echo "Copying to website/static/..."
cp target/wasm32-unknown-unknown/release/doux.wasm website/static/doux.wasm
echo "Verifying..."
ls -la website/static/doux.wasm
echo ""
echo "Done! WASM updated in website/static/"