5
0
mirror of https://github.com/cwinfo/yggdrasil-map synced 2024-09-19 21:52:30 +00:00
yggdrasil-map/README.md

22 lines
1.1 KiB
Markdown
Raw Normal View History

2018-11-17 21:08:51 +00:00
# Yggdrasil map
2014-03-30 14:43:14 +00:00
2018-11-17 21:08:51 +00:00
Forked from the code for http://www.fc00.org (http://h.fc00.org on Hyperboria).
2014-03-30 14:43:14 +00:00
2014-06-04 19:20:36 +00:00
## Sending your view of the network
2015-07-26 20:11:12 +00:00
2018-11-17 21:08:51 +00:00
This code reads a map of known nodes from `y.yakamo.org:3000/current` (reachable over yggdrasil). In order to display an accurate map of the network, we need your help. If you run a yggdrasil node, plase send your network view using the [send-view.py](https://github.com/yakamok/Niflheim-api/blob/master/send-view.py) script.
2014-03-30 14:43:14 +00:00
## Web server
```bash
2018-11-17 21:08:51 +00:00
git clone https://github.com/Arceliar/yggdrasil-map.git
sudo apt-get install python-flask python-flup python-mysqldb python-pygraphviz python-networkx
2014-03-30 14:43:14 +00:00
2018-11-17 21:08:51 +00:00
cd yggdrasil-map/web
cp web_config.example.cfg web_config.cfg
2015-07-26 20:16:07 +00:00
python web.py
2014-03-30 14:43:14 +00:00
```
2015-07-26 20:16:07 +00:00
2018-11-17 21:08:51 +00:00
You would need to edit web.py to adjust the address/port the server listens on, and may want to edit the web_config.cfg file. Note that most of the options in web_config.cfg are unused after forking from the fc00.org code, so this is mostly just a workaround until we have time to clean up this code.
2015-07-26 20:16:07 +00:00
Run `web/updateGraph.py` periodically to rerender nodes graph. You may want to customize reverse-proxy IP retrieval logic in web.py.