GMap is a system for visualizing graphs as maps.
-
Install the python dependencies listed in requirements.txt. Using pip:
pip install -r requirements.txt
-
Install graphviz
-
Compile the extranal libraries by running (optional)
make -C ./external/eba make -C ./external/ecba make -C ./external/mapsets
-
Set up Django settings (optional). Edit
DATABASES
,SECRET_KEY
,ALLOWED_HOSTS
andADMINS
ingmap_web/settings.py
-
Create Django databases:
./manage.py syncdb
-
Run the server:
./manage.py runserver
-
Access the map interface at
http://localhost:8000
Code is released under the MIT License.