chore: sync

This commit is contained in:
2026-03-18 22:06:17 +08:00
parent 9b04338e5f
commit 7cb7aeabcb
28 changed files with 3634 additions and 0 deletions

15
dev.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -e
cleanup() {
if [ -n "${BACK_PID:-}" ]; then
kill "$BACK_PID" 2>/dev/null || true
fi
}
trap cleanup EXIT
(cd mengyastore-backend && go run .) &
BACK_PID=$!
cd mengyastore-frontend
npm run dev