agent-ui / Makefile
lvwerra's picture
lvwerra HF Staff
Remove requirements.txt, use pyproject.toml as single dependency source
c48a8e5
raw
history blame contribute delete
242 Bytes
.PHONY: install dev clean
# Install all dependencies
install:
pip install .
# Run development server
dev:
cd backend && python main.py
# Clean generated files
clean:
rm -rf node_modules
rm -rf .pytest_cache
rm -rf backend/__pycache__