mirror of
https://github.com/cwinfo/yggdrasil-map
synced 2024-11-12 22:10:26 +00:00
35 lines
1.0 KiB
Markdown
35 lines
1.0 KiB
Markdown
# fc00.org
|
|
|
|
Source code for http://www.fc00.org (http://h.fc00.org on Hyperboria).
|
|
|
|
## Sending your view of the network
|
|
|
|
In order to display accurate map of Hyperboria fc00 need your help. If you run CJDNS node, please send your network view using sendGraph.py script.
|
|
|
|
```bash
|
|
# Install requests and cjdns for Python 3
|
|
pip3 install cjdns requests
|
|
# Get the script
|
|
wget https://raw.githubusercontent.com/zielmicha/fc00.org/master/scripts/sendGraph.py
|
|
# Edit configuration
|
|
nano sendGraph.py
|
|
chmod +x sendGraph.py
|
|
|
|
# Run this every 20-100 minutes
|
|
./sendGraph.py
|
|
# For example, add it to crontab
|
|
(crontab -l; echo "@hourly /root/sendGraph.py") | crontab -
|
|
```
|
|
|
|
## Web server
|
|
```bash
|
|
git clone git@github.com:zielmicha/fc00.org.git
|
|
git clone git@github.com:zielmicha/nodedb.git web/nodedb
|
|
sudo apt-get install python-flask python-flup python-mysqldb python-pygraphviz
|
|
|
|
cd fc00.org/web
|
|
python web.py
|
|
```
|
|
|
|
Run `web/updateGraph.py` periodically to rerender nodes graph. You may want to customize reverse-proxy IP retrieval logic in web.py.
|