chore: initial project scaffold

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>
This commit is contained in:
achmad
2026-05-06 13:13:21 +07:00
commit 6a53f87e03
53 changed files with 5095 additions and 0 deletions
Executable
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env bash
set -e
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
echo "[DroidScope] Starting dev environment..."
cd "$ROOT/frontend-react"
npm run dev &
FRONTEND_PID=$!
cd "$ROOT/desktop"
export PATH="$PATH:$(go env GOPATH)/bin"
wails dev &
WAILS_PID=$!
echo "[DroidScope] Frontend PID: $FRONTEND_PID"
echo "[DroidScope] Wails PID: $WAILS_PID"
trap "kill $FRONTEND_PID $WAILS_PID 2>/dev/null; exit 0" INT TERM
wait