Files
philschmid 09971ff55e init
2025-05-29 15:46:39 -07:00

20 lines
676 B
Makefile

.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