2024-07-28 11:21:15 +00:00
|
|
|
![PierMesh logo](piermeshicon.png)
|
|
|
|
# PierMesh
|
|
|
|
## A new internet, a fresh start
|
|
|
|
|
|
|
|
This is the monorepo for PierMesh.
|
|
|
|
|
|
|
|
Overview of PierMesh
|
|
|
|
![Overview diagram of PierMesh](overview.png)
|
|
|
|
|
|
|
|
Bubble overview
|
|
|
|
![Bubble overview diagram](bubble.png)
|
|
|
|
|
|
|
|
Catch overview
|
|
|
|
![Catch overview](catch.png)
|
|
|
|
|
|
|
|
# How to use
|
|
|
|
|
|
|
|
Note: these instructions will probably only work on Linux at the moment
|
|
|
|
Note: check the scripts to make sure they'll work with your system, and in general I reccomend checking scripts before you run them
|
|
|
|
|
|
|
|
Follow Meshtastic's guide on setting up your device: [https://meshtastic.org/docs/getting-started/](https://meshtastic.org/docs/getting-started/)
|
|
|
|
Make sure you have the latest Python installed
|
|
|
|
|
2024-07-29 03:52:09 +00:00
|
|
|
```
|
2024-07-28 11:21:15 +00:00
|
|
|
git clone https://git.utopic.work/PierMesh/piermesh
|
|
|
|
|
|
|
|
cd piermesh
|
|
|
|
|
|
|
|
python -m venv .
|
|
|
|
|
|
|
|
source bin/activate
|
|
|
|
|
|
|
|
pip install -r requirements.txt
|
|
|
|
|
|
|
|
cd src
|
|
|
|
|
|
|
|
chmod a+x ./scripts/falin
|
|
|
|
|
|
|
|
./scripts/falin
|
2024-07-29 03:52:09 +00:00
|
|
|
```
|