initial commit

This commit is contained in:
Sudo-Ivan
2025-05-28 21:42:11 -05:00
commit 55e3c81206
18 changed files with 985 additions and 0 deletions

50
README.md Normal file
View File

@@ -0,0 +1,50 @@
# Ren Browser
A browser for the Reticulum Network. Work-in-progress.
## Development
**Requirements**
- Python 3.13+
- Flet
- Reticulum 0.9.6+
**Setup**
```bash
poetry install
```
### Desktop
```bash
poetry run ren-browser-dev
```
### Web
```bash
poetry run ren-browser-web-dev
```
### Mobile
**Android**
```bash
poetry run ren-browser-android-dev
```
**iOS**
```bash
poetry run ren-browser-ios-dev
```
### Docker/Podman
```bash
docker build -t ren-browser .
docker run -p 8550:8550 ren-browser
```