chore: sync local updates

This commit is contained in:
2026-05-16 19:03:04 +08:00
parent b86ce4a73a
commit 14cd94c88d
45 changed files with 2983 additions and 4127 deletions

8
dev.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT="$(cd "$(dirname "$0")" && pwd)"
(cd "$ROOT/mengyaconnect-backend" && go run .) &
BE_PID=$!
trap 'kill $BE_PID 2>/dev/null' EXIT INT TERM
cd "$ROOT/mengyaconnect-frontend"
npm run dev