hopglass/README.md

74 lines
1.8 KiB
Markdown
Raw Normal View History

2015-04-01 17:49:12 +02:00
[![Build Status](https://travis-ci.org/tcatm/meshviewer.svg?branch=master)](https://travis-ci.org/tcatm/meshviewer)
2015-04-01 17:07:04 +02:00
# Meshviewer
Meshviewer is a frontend for
[ffmap-backend](https://github.com/ffnord/ffmap-backend).
2015-04-11 13:48:16 +02:00
[Changelog](CHANGELOG.md)
2015-04-01 17:07:04 +02:00
# Screenshots
![](doc/mapview.png?raw=true)
![](doc/graphview.png?raw=true)
![](doc/allnodes.png?raw=true)
![](doc/links.png?raw=true)
![](doc/statistics.png?raw=true)
2015-03-29 14:49:59 +02:00
# Dependencies
2015-03-29 01:09:21 +01:00
2015-03-29 14:49:59 +02:00
- npm
- bower
- grunt-cli
2015-04-14 21:45:43 +02:00
- Sass (>= 3.2)
2015-03-29 01:09:21 +01:00
2015-03-29 14:49:59 +02:00
# Installing dependencies
2015-03-29 01:09:21 +01:00
2015-04-25 18:23:20 +02:00
Install npm with your package-manager. On Debian-like systems run:
sudo apt-get install npm
Execute these commands on your server as a normal user to prepare the dependencies:
git clone https://github.com/tcatm/meshviewer.git
cd meshviewer
2015-03-29 14:49:59 +02:00
npm install
2015-04-25 18:23:20 +02:00
npm install bower grunt-cli
node_modules/.bin/bower install
2015-03-29 03:46:10 +02:00
2015-04-21 00:10:29 +02:00
# Configure
Copy `config.js.example` to `config.js` and change it to match your community.
## dataPath (string)
`dataPath` must point to a directory containing `nodes.json` and `graph.json`
(both are generated by
[ffmap-backend](https://github.com/ffnord/ffmap-backend)). Don't forget the
trailing slash! Data may be served from a different domain with [CORS enabled].
Also, GZip will greatly reduce bandwidth consumption.
## siteName (string)
Change this to match your communities' name. It will be used in various places.
2015-03-29 03:46:10 +02:00
2015-04-21 00:10:29 +02:00
## mapSigmaScale (float)
This affects the initial scale of the map. Greater values will show a larger
area. Values like 1.0 and 0.5 might be good choices.
## showContact (bool)
Setting this to `false` will hide contact information for nodes.
# Building
2015-04-25 18:23:20 +02:00
Just run the following command from the meshviewer directory:
2015-03-29 03:46:10 +02:00
2015-04-25 18:23:20 +02:00
node_modules/.bin/grunt
2015-03-29 03:46:10 +02:00
This will generate `build/` containing all required files.
2015-04-21 00:10:29 +02:00
[CORS enabled]: http://enable-cors.org/server.html