Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 679 Bytes

File metadata and controls

43 lines (35 loc) · 679 Bytes

Below are the minimal terminal commands needed to fully set up and replicate the project.

Install uv (if not installed)

curl -LsSf https://astral.sh/uv/install.sh | sh

Clone the repo

git clone https://github.com/SimoneFiorellino/python_rf.git
cd python_rf

Sync environment and dependencies

uv sync

(Optional) Refresh environment if project name changed

uv venv --refresh
uv sync

Install pre-commit hooks

uv run pre-commit install

Run pre-commit once over all files

uv run pre-commit run --all-files

Run unit tests

uv run pytest

Run your Python scripts

uv run -m src.main