From 9eb9aafd359619982e21d4ef96f5aaef0eea73bb Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 12 Nov 2025 18:58:41 -0600 Subject: [PATCH] Update README.md - Add Poetry instructions back --- README.md | 44 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 18f1ae6..6e54a90 100644 --- a/README.md +++ b/README.md @@ -21,44 +21,74 @@ Built using [Flet](https://flet.dev/). - Python 3.13+ - Flet - Reticulum 1.0.0+ -- UV +- UV or Poetry **Setup** +Using UV: ```bash uv sync ``` +Or using Poetry: +```bash +poetry install +``` + ### Desktop +Using UV: ```bash # From local development uv run ren-browser ``` +Using Poetry: +```bash +poetry run ren-browser +``` + ### Web +Using UV: ```bash # From local development uv run ren-browser-web ``` +Using Poetry: +```bash +poetry run ren-browser-web +``` + ### Mobile **Android** +Using UV: ```bash # From local development uv run ren-browser-android ``` +Using Poetry: +```bash +poetry run ren-browser-android +``` + **iOS** +Using UV: ```bash # From local development uv run ren-browser-ios ``` +Using Poetry: +```bash +poetry run ren-browser-ios +``` + To run directly from the GitHub repository without cloning: ```bash @@ -83,12 +113,24 @@ docker run -p 8550:8550 -v ./config:/app/config ren-browser ### Linux +Using UV: ```bash uv run flet build linux ``` +Using Poetry: +```bash +poetry run flet build linux +``` + ### Android +Using UV: ```bash uv run flet build android +``` + +Using Poetry: +```bash +poetry run flet build android ``` \ No newline at end of file