feature: new

This commit is contained in:
贺海国
2025-12-11 19:41:33 +08:00
parent 942c055fd5
commit 5460186757
7 changed files with 1207 additions and 2 deletions

30
justfile Normal file
View File

@@ -0,0 +1,30 @@
# Justfile for Streamlit example app
# Use `just <command>` to run tasks
# Default task: show available commands
default:
just --list
# Run the Streamlit app
run:
uv run streamlit run app.py
# Install dependencies
install:
uv add streamlit ruff matplotlib plotly pandas numpy
# Format code with ruff
format:
uv run ruff format .
# Check code with ruff
check:
uv run ruff check .
# Run all checks and formatting
lint:
just format && just check
# Clean up cache files
clean:
rm -rf __pycache__ .ruff_cache .streamlit_cache