Full Build Check
Run frontend and backend builds to verify compilation.
Process
- •
Frontend build:
bashcd frontend && npm run build
This runs TypeScript type checking + Vite production build.
- •
Backend build:
bashcd backend && make build
This compiles all Go services.
- •
If either fails:
- •Parse error messages
- •Fix TypeScript or Go compilation errors
- •Re-run the failed build
- •Repeat until both pass (max 3 iterations)
- •
Report: Summary of build status for both frontend and backend.
Common Issues
- •TS errors: Missing imports, type mismatches, unused variables (strict mode)
- •Go errors: Unused imports, type mismatches, missing interface implementations
- •Both: Check that API types match between frontend and backend