From ee990ad25f9a8970604559051b0f6de0884f9039 Mon Sep 17 00:00:00 2001 From: Richard Holzeis Date: Sun, 21 Jan 2024 11:55:46 +0100 Subject: [PATCH] chore: Add web target to justfile --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index 82206e619..d20f22e8e 100644 --- a/justfile +++ b/justfile @@ -78,6 +78,10 @@ android args="": android-release: cd mobile/native && cargo ndk -t armeabi-v7a -t arm64-v8a -o ../android/app/src/main/jniLibs build --release --verbose +# Build flutter webapp for cargo run --bin webapp +web: + cd webapp/frontend && flutter build web + # Build Rust library for iOS (debug mode) ios: cd mobile/native && CARGO_TARGET_DIR=../../target/ios_debug cargo lipo