Skip to content
Fluidlog edited this page Nov 16, 2015 · 23 revisions

Welcome to the fluidgraphclient wiki!

Installation

To install fluidgraphclient :

git clone --recursive https://github.com/fluidlog/fluidgraphclient.git
cd fluidgraphclient
git submodule foreach git pull origin master

"--recursive" option allow to install fluidgraph library automatically The second line allow to get the last version of fluidgraph module.

To pull fluigraphclient project

cd fluidgraphclient
git pull
git submodule foreach git pull origin master

If you want to commit fluidgraph submodule

cd fluidgraph
#If you did a commit, you can retrieve it on master : 
#git cherry-pick <commit number>
git checkout master
git status
git add...
git commit ...
git push ...
cd ../../
git status
git add assets/fluidgraph ...

Explanation

This client use fluidgraph library functions to load a graph or create a graph from scratch. To understand fluidgraph library, please go to https://github.com/fluidlog/fluidgraph repository.

New graph

Demo graph (when you start)

help

Please read the documentation of the client in the help menu at the top right of the screen

Clone this wiki locally