You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Backend (from /server)
go run main.go # Run server locally
go build -o app main.go # Build binary
go test ./... # Run all tests
go test -v ./internal/service/user -run TestCreateUser # Run single test
go test -cover ./... # Run tests with coverage
go mod tidy # Clean up dependencies
go fmt ./... # Format all Go files# Frontend (from /client)
npm run dev # Start dev server (Vite on port 3000)
npm run build # Build for production
npm run lint # Run ESLint
npm run preview # Preview production build
npx tsc --noEmit # TypeScript type check# Full Stack
docker-compose up # Run all services (dev)
docker-compose -f docker-compose-prod.yml up # Production
docker-compose down -v # Stop and remove volumes
Go Code Style
Imports: stdlib → blank line → external → blank line → internal (aliased: coreHandler "path")