Tauri 2 + Vue 3 Grundgerüst (create-tauri-app)

This commit is contained in:
marcus.hinz
2026-07-03 11:06:12 +02:00
commit 8b9eeb44e2
45 changed files with 6989 additions and 0 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -euo pipefail
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
export CARGO_HOME="$HOME/tools/.cargo"
export RUSTUP_HOME="$HOME/tools/.rustup"
export PATH="$CARGO_HOME/bin:$PATH"
cd "$DIR"
npm run tauri build -- "$@"