Update README.md

- Add Poetry instructions back
This commit is contained in:
2025-11-12 18:58:41 -06:00
parent 263e5a92bf
commit 9eb9aafd35

View File

@@ -21,44 +21,74 @@ Built using [Flet](https://flet.dev/).
- Python 3.13+ - Python 3.13+
- Flet - Flet
- Reticulum 1.0.0+ - Reticulum 1.0.0+
- UV - UV or Poetry
**Setup** **Setup**
Using UV:
```bash ```bash
uv sync uv sync
``` ```
Or using Poetry:
```bash
poetry install
```
### Desktop ### Desktop
Using UV:
```bash ```bash
# From local development # From local development
uv run ren-browser uv run ren-browser
``` ```
Using Poetry:
```bash
poetry run ren-browser
```
### Web ### Web
Using UV:
```bash ```bash
# From local development # From local development
uv run ren-browser-web uv run ren-browser-web
``` ```
Using Poetry:
```bash
poetry run ren-browser-web
```
### Mobile ### Mobile
**Android** **Android**
Using UV:
```bash ```bash
# From local development # From local development
uv run ren-browser-android uv run ren-browser-android
``` ```
Using Poetry:
```bash
poetry run ren-browser-android
```
**iOS** **iOS**
Using UV:
```bash ```bash
# From local development # From local development
uv run ren-browser-ios uv run ren-browser-ios
``` ```
Using Poetry:
```bash
poetry run ren-browser-ios
```
To run directly from the GitHub repository without cloning: To run directly from the GitHub repository without cloning:
```bash ```bash
@@ -83,12 +113,24 @@ docker run -p 8550:8550 -v ./config:/app/config ren-browser
### Linux ### Linux
Using UV:
```bash ```bash
uv run flet build linux uv run flet build linux
``` ```
Using Poetry:
```bash
poetry run flet build linux
```
### Android ### Android
Using UV:
```bash ```bash
uv run flet build android uv run flet build android
``` ```
Using Poetry:
```bash
poetry run flet build android
```