2024-07-28 11:21:15 +00:00
![PierMesh logo ](piermeshicon.png )
# PierMesh
## A new internet, a fresh start
# Docs
You can find the full docs here: [docs/ ](https://git.utopic.work/PierMesh/piermesh/src/branch/main/docs )
# 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 recommend 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/ )
2024-11-26 18:34:29 +00:00
2024-07-28 11:21:15 +00:00
Make sure you have the latest Python installed
2024-11-26 18:34:29 +00:00
Make sure you have pip and venv installed
2024-07-28 11:21:15 +00:00
```
git clone https://git.utopic.work/PierMesh/piermesh
cd piermesh
2024-11-26 18:34:29 +00:00
python -m venv .venv
2024-07-28 11:21:15 +00:00
2024-11-26 18:34:29 +00:00
source .venv/bin/activate
2024-07-28 11:21:15 +00:00
pip install -r requirements.txt
cd src
2024-11-26 18:41:43 +00:00
cp .piermesh.example .piermesh
Set the TransceiverPort (you should have this from setting up your Meshtastic device)
Set the PSK, this should match the PSK of node's you want to connect with
2024-11-26 18:34:29 +00:00
python run.py
2024-07-28 11:21:15 +00:00
```
2024-11-26 18:41:43 +00:00
You should now be able to access the web interface at port 5000 of the machine you set up on (likely localhost:5000)
Make sure to click connect at the top of the page to initialize your websocket connection, after this you can use the utilities provided
Hopper: proxy requests to the main internet
Catch: browse for a Catch/website on PierMesh
Catch Editor: create and publish a Catch onto PierMesh
Bubble: send peer to peer messages (and art using the pixel art tool) to other nodes
2024-07-28 11:21:15 +00:00
# License text
```
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
2024-08-12 10:29:58 +00:00
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
2024-07-28 11:21:15 +00:00
```