init: 初始化项目

This commit is contained in:
0264408
2026-03-10 16:26:48 +08:00
commit 57e0ef2cf6
79 changed files with 8943 additions and 0 deletions

14
scripts/dev.bat Normal file
View File

@@ -0,0 +1,14 @@
@echo off
echo Starting Nebula development environment...
echo.
echo Starting backend server (dev mode)...
start "Nebula Backend" cmd /c "set SERVER_MODE=dev && go run ./cmd/nebula-server/main.go"
echo Waiting for backend to start...
timeout /t 3 /nobreak >nul
echo.
echo Starting frontend (Vite dev server)...
cd web
pnpm dev