.PHONY: dev build clean # Start backend and frontend in dev mode (run in separate terminals) dev-backend: ADMIN_PASSWORD=123123 JWT_SECRET=y123123 go run -tags dev person-home dev-frontend: cd frontend && npm run dev # Production build: frontend + Go binary build: cd frontend && npm ci && npm run build go build -ldflags="-s -w" -o person-home person-home # Clean build artifacts clean: rm -f person-home rm -rf frontend/dist rm -rf frontend/node_modules