Click Use this template
-> Create a new repository
and finish the set up process.
Clone the resulting repository
git clone <your-github-url-here>
python -m venv
For Windows:
venv\Scripts\activate
For Mac/Linux:
source venv\bin\activate
pip install -r requirements.txt
python -m node
Take a look at the koi-net repo for documentation about the koi-net package and developing nodes. This template provides the basic structure for a full node setup. You'll likely want to start by modifying config.py
with the RID types your node deals with, and adding some new knowledge handlers in handlers.py
.