# Justfile for maimai-pcse 麦麦智农 # Default: show available commands default: just --list # Run the Streamlit app run: uv run streamlit run app.py # Install dependencies install: uv sync # Format code with ruff (if available) format: uv run ruff format . # Check code check: uv run ruff check . # Clean caches clean: rm -rf __pycache__ .ruff_cache .streamlit