From 88c445a7998965c5f881084510db8d1ef9e5d649 Mon Sep 17 00:00:00 2001 From: swve Date: Fri, 21 Feb 2025 20:49:46 +0100 Subject: [PATCH] docs: Replace Poetry with uv for Python dependency management --- pages/setup-dev-environment.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/setup-dev-environment.mdx b/pages/setup-dev-environment.mdx index 104fa98..f4036bd 100644 --- a/pages/setup-dev-environment.mdx +++ b/pages/setup-dev-environment.mdx @@ -11,7 +11,7 @@ This is a guide to set up a dev environment for LearnHouse, it will guide you th - [Node.js 21.x](https://nodejs.org/en/download/) - [pnpm](https://pnpm.io/installation) - [Python 3.12.x](https://www.python.org/downloads/) -- [Poetry](https://python-poetry.org/docs/) +- [uv](https://github.com/astral-sh/uv) - macOS, Linux or Windows ## Backend configuration @@ -66,13 +66,13 @@ cd apps/api #### Install python dependencies ```shell copy -poetry install +uv sync ``` #### Run the Backend in Dev mode ```shell copy -poetry run python app.py +uv run app.py ```