.PHONY: frontend backend reload nginx # install deps and build the React app frontend: cd frontend && npm install && npm run build # start FastAPI backend backend: uvicorn backend.app:app --reload --port 8000 # reload nginx after config or build changes nginx: sudo systemctl reload nginx # build everything and reload nginx all: frontend nginx