DataPilot-AI-Agent / Makefile
dineshb's picture
Deploy DataPilot AI production Docker Space
9c1c0ef verified
Raw
History Blame Contribute Delete
429 Bytes
.PHONY: install test lint format coverage build run api security
install:
python -m pip install -e ".[dev]"
test:
python -m pytest
lint:
python -m ruff check .
format:
python -m ruff format .
coverage:
python -m pytest --cov=datapilot --cov=api --cov-fail-under=75
build:
python -m build
run:
python -m streamlit run app.py
api:
python -m uvicorn api.main:app --reload
security:
python -m pip_audit