Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 31 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,51 @@
TuGraph DB BROWSER 🔗
TuGraph DB BROWSER 是 TuGraph 图数据库的可视化工具。可以完成图谱、模型、数据等的创建和导入。同时可用使用 TuGraph Cypher 进行数据的操作。

0. 环境准备
### 0. 环境准备

- node.js
- python2

1. 安装项目
### 1. 安装项目

```bash
yarn run bootstrap
```

2. 启动客户端
### 2. 启动客户端
#### 2.1 开发环境

##### 2.1.1. web 端

```bash

# 开发环境
yarn run client-dev // 一定要 yarn

```js
cd client
yarn start // 切记,一定要 yarn start,npm run start 会存在若干问题!
```

2. 启动服务端
##### 2.1.2 启动服务端

```bash
cd server
npm run dec

yarn run server-dev

```

浏览器访问 http://localhost:8888


#### 2.2 生产环境


```bash

# 开发环境
yarn run build

# 生产环境
yarn start // 切记,一定要 yarn start,npm run start 会存在若干问题!

```

浏览器访问 http://localhost:8888
Expand Down