You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can find TuGraph's doc by link, and welcome to our website.
2. Quick Start
An easy way to start is using docker to set up, which can be found in DockerHub, named tugraph/tugraph-runtime-[os]:[tugraph version],
for example, tugraph/tugraph-runtime-centos7:4.5.1.
It's recommended to build TuGraph in linux system, and docker environment is a good choice. If you want to setup a new environment, please refer to Dockerfile.
Here are steps to compile TuGraph:
run deps/build_deps.sh to build tugraph-web if you need. Skip this step otherwise.
cmake .. -DOURSYSTEM=centos7 or cmake .. -DOURSYSTEM=ubuntu
$ git clone --recursive https://github.com/TuGraph-family/tugraph-db.git
$ cd tugraph-db
$ deps/build_deps.sh
$ mkdir build &&cd build
$ cmake .. -DOURSYSTEM=centos7
$ make
$ make package
4. Develop
We have prepared environment docker images for compiling in DockerHub, named tugraph/tugraph-compile-[os]:[compile version],
for example, tugraph/tugraph-compile-centos7:1.3.4, which can help developers get started easily.