6a53f87e03
Sets up monorepo with Wails desktop shell, Go backend, React/TS frontend, and Kotlin Android SDK skeleton. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
324 B
Bash
Executable File
16 lines
324 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
echo "[DroidScope] Building frontend..."
|
|
cd "$ROOT/frontend-react"
|
|
npm run build
|
|
|
|
echo "[DroidScope] Building desktop app..."
|
|
cd "$ROOT/desktop"
|
|
export PATH="$PATH:$(go env GOPATH)/bin"
|
|
wails build
|
|
|
|
echo "[DroidScope] Build complete: desktop/build/bin/"
|