mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2026-06-19 00:09:23 +00:00
12 lines
503 B
Markdown
12 lines
503 B
Markdown
# Optional dev venv (not shipped in release builds)
|
|
|
|
Use this **only for local development** when you do not want to run `npm run bundle:reticulum` (PyInstaller) on every change.
|
|
|
|
```bash
|
|
cd electron && npm run bundle:reticulum-venv
|
|
```
|
|
|
|
That creates `venv/` here with `pip install rns lxmf`. The main process tries **frozen `resources/reticulum/rnsd` first**, then this venv.
|
|
|
|
Release builds use **only** the frozen binary under `resources/reticulum/` — see `electron/resources/reticulum/README.md`.
|