verso2

A simple web framework.
git clone git://git.chappelle.dev/verso2.git
Log | Files | Refs | README | LICENSE

reticulum.md (979B)


      1 ---
      2 title: Reticulum QuickStart
      3 author: Nathaniel Chappelle
      4 date: Mon, 23 Feb 2026 14:11:20 -0800
      5 ---
      6 
      7 This document serves as a guide to quickly accessing the reticulum network with
      8 minimal configuration.
      9 
     10 Start with this:
     11 
     12 ```sh
     13 python3 -m venv .venv
     14 
     15 source .venv/bin/activate
     16 
     17 pip install rns nomadnet
     18 
     19 # Adding peers to the RNS configuration
     20 curl https://letsdecentralize.org/rollcall/reticulum.txt >> ~/.reticulum/config
     21 ```
     22 
     23 Now you have the necessary network utils and RNS browser. Start `rnsd`, then in
     24 another terminal window start `nomadnet`.
     25 
     26 Read the introductory materials on that populate on the first launch of
     27 `nomadnet`. Now you're ready to start exploring!
     28 
     29 For example, you can navigate to the network tab and announce your local node,
     30 or connect to another peer like
     31 `3b5bc6888356193f1ac1bfb716c1beef:/page/index.mu`. Just hit `ctrl+u` and enter
     32 that address (thanks [qbit](https://mammothcirc.us/@qbit)!)
     33 
     34 It's seriously that simple. Decentralize yourself.