File tree Expand file tree Collapse file tree 1 file changed +31
-9
lines changed Expand file tree Collapse file tree 1 file changed +31
-9
lines changed Original file line number Diff line number Diff line change 1
1
TuGraph DB BROWSER 🔗
2
2
TuGraph DB BROWSER 是 TuGraph 图数据库的可视化工具。可以完成图谱、模型、数据等的创建和导入。同时可用使用 TuGraph Cypher 进行数据的操作。
3
3
4
- 0 . 环境准备
4
+ ### 0. 环境准备
5
5
6
6
- node.js
7
7
- python2
8
8
9
- 1 . 安装项目
9
+ ### 1. 安装项目
10
10
11
11
``` bash
12
12
yarn run bootstrap
13
13
```
14
14
15
- 2 . 启动客户端
15
+ ### 2. 启动客户端
16
+ #### 2.1 开发环境
17
+
18
+ ##### 2.1.1. web 端
19
+
20
+ ``` bash
21
+
22
+ # 开发环境
23
+ yarn run client-dev // 一定要 yarn
16
24
17
- ``` js
18
- cd client
19
- yarn start // 切记,一定要 yarn start,npm run start 会存在若干问题!
20
25
```
21
26
22
- 2 . 启动服务端
27
+ ##### 2.1.2 启动服务端
23
28
24
29
``` bash
25
- cd server
26
- npm run dec
30
+
31
+ yarn run server-dev
32
+
33
+ ```
34
+
35
+ 浏览器访问 http://localhost:8888
36
+
37
+
38
+ #### 2.2 生产环境
39
+
40
+
41
+ ``` bash
42
+
43
+ # 开发环境
44
+ yarn run build
45
+
46
+ # 生产环境
47
+ yarn start // 切记,一定要 yarn start,npm run start 会存在若干问题!
48
+
27
49
```
28
50
29
51
浏览器访问 http://localhost:8888
You can’t perform that action at this time.
0 commit comments