chrisjcc's picture
Upload folder using huggingface_hub
ec2e286 verified
raw
history blame contribute delete
676 Bytes
.PHONY: help dev-frontend dev-backend dev
help:
@echo "Available commands:"
@echo " make dev-frontend - Starts the frontend development server (Vite)"
@echo " make dev-backend - Starts the backend development server (Uvicorn with reload)"
@echo " make dev - Starts both frontend and backend development servers"
dev-frontend:
@echo "Starting frontend development server..."
@cd frontend && npm run dev
dev-backend:
@echo "Starting backend development server..."
@cd backend && langgraph dev
# Run frontend and backend concurrently
dev:
@echo "Starting both frontend and backend development servers..."
@make dev-frontend & make dev-backend