This commit is contained in:
2025-11-03 11:31:29 -06:00
parent 0d2d595867
commit 5d640032ee

View File

@@ -34,9 +34,6 @@ uv sync
```bash ```bash
# From local development # From local development
uv run ren-browser uv run ren-browser
# Or run directly from GitHub
uvx git+https://github.com/Sudo-Ivan/Ren-Browser.git -- ren-browser
``` ```
### Web ### Web
@@ -44,9 +41,6 @@ uvx git+https://github.com/Sudo-Ivan/Ren-Browser.git -- ren-browser
```bash ```bash
# From local development # From local development
uv run ren-browser-web uv run ren-browser-web
# Or run directly from GitHub
uvx git+https://github.com/Sudo-Ivan/Ren-Browser.git -- ren-browser-web
``` ```
### Mobile ### Mobile
@@ -56,9 +50,6 @@ uvx git+https://github.com/Sudo-Ivan/Ren-Browser.git -- ren-browser-web
```bash ```bash
# From local development # From local development
uv run ren-browser-android uv run ren-browser-android
# Or run directly from GitHub
uvx git+https://github.com/Sudo-Ivan/Ren-Browser.git -- ren-browser-android
``` ```
**iOS** **iOS**
@@ -66,9 +57,19 @@ uvx git+https://github.com/Sudo-Ivan/Ren-Browser.git -- ren-browser-android
```bash ```bash
# From local development # From local development
uv run ren-browser-ios uv run ren-browser-ios
```
# Or run directly from GitHub To run directly from the GitHub repository without cloning:
uvx git+https://github.com/Sudo-Ivan/Ren-Browser.git -- ren-browser-ios
```bash
# Using uvx (temporary environment)
uvx --from git+https://github.com/Sudo-Ivan/Ren-Browser.git ren-browser-web
# Or clone and run locally
git clone https://github.com/Sudo-Ivan/Ren-Browser.git
cd Ren-Browser
uv sync
uv run ren-browser-web
``` ```
### Docker/Podman ### Docker/Podman