Skip to content

Commit 6c5158e

Browse files
authored
Merge pull request #347 from WeBankPartners/346_update_readme
#346 Update readme gif with view management
2 parents 0ffad1c + db108cf commit 6c5158e

7 files changed

Lines changed: 54 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ WeCMDB常规容器化部署。
8787
[WeCMDB用户手册](cmdb-wiki/docs/manual/wecmdb_user_guide.md)
8888

8989
## 开发者文档
90-
**WeCMDB快速本地启动**
90+
**WeCMDB快速本地启动**
9191
如何本地快速体验,请查看文档[WeCMDB快速本地启动环境配置](cmdb-wiki/docs/developer/wecmdb_local_standalone_guide.md)
9292

93-
**WeCMDB常规环境搭建**
93+
**WeCMDB常规环境搭建**
9494
WeCMDB使用Java和Vue进行开发,数据存储于MySQL,并依赖Tomcat Web容器运行。
9595

9696
请参考文档进行开发环境配置[WeCMDB开发环境配置](cmdb-wiki/docs/developer/wecmdb_developer_guide.md)
9797

98-
**WeCMDB代码贡献指引**
98+
**WeCMDB代码贡献指引**
9999
关于WeCMDB代码贡献, 请查看文档
100100
[WeCMDB代码贡献指引](cmdb-wiki/docs/developer/code_contributors_submit_guide.md)
101101

cmdb-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>cmdb</artifactId>
88
<groupId>com.webank.cmdb</groupId>
9-
<version>0.0.1-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
</parent>
1111
<groupId>com.webank</groupId>
1212
<artifactId>cmdb-core</artifactId>

cmdb-core/src/main/resources/database/04.cmdb.experience.data.sql

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,51 @@
11
SET FOREIGN_KEY_CHECKS=0;
2+
3+
INSERT INTO `adm_user` (`id_adm_user`, `name`, `code`, `encrypted_password`, `description`, `id_adm_tenement`, `action_flag`, `is_system`) VALUES
4+
(2, 'Jordan Zhang', 'jordan', '$2a$10$N7CQen.5UtFbEIPBYWhfgOnAg73h0YbLQjr2ivVuEeDATghfuZea.', 'CMDB Admin', NULL, NULL, NULL),
5+
(3, 'Monkey', 'monkey', '$2a$10$N7CQen.5UtFbEIPBYWhfgOnAg73h0YbLQjr2ivVuEeDATghfuZea.', 'CMDB Developer', NULL, NULL, NULL),
6+
(4, 'Chaney Liu', 'chaneyliu', '$2a$10$N7CQen.5UtFbEIPBYWhfgOnAg73h0YbLQjr2ivVuEeDATghfuZea.', 'CMDB Architect', NULL, NULL, NULL);
7+
8+
INSERT INTO `adm_role_user` (`id_adm_role_user`, `id_adm_role`, `id_adm_user`, `is_system`) VALUES
9+
(2, 2, 2, 0),
10+
(3, 9, 3, 0),
11+
(4, 6, 4, 0);
12+
13+
INSERT INTO `adm_role_menu` (`id_adm_role_menu`, `id_adm_role`, `id_adm_menu`, `is_system`) VALUES
14+
(25, 2, 20, 0),
15+
(26, 2, 21, 0),
16+
(27, 2, 22, 0),
17+
(28, 2, 23, 0),
18+
(29, 2, 24, 0),
19+
(30, 2, 9, 0),
20+
(31, 2, 10, 0),
21+
(32, 2, 11, 0),
22+
(33, 2, 16, 0),
23+
(34, 2, 17, 0),
24+
(35, 2, 18, 0),
25+
(36, 2, 19, 0),
26+
(37, 2, 6, 0),
27+
(38, 2, 7, 0),
28+
(39, 2, 8, 0),
29+
(44, 9, 6, 0),
30+
(45, 9, 7, 0),
31+
(46, 9, 8, 0),
32+
(47, 9, 9, 0),
33+
(48, 9, 10, 0),
34+
(49, 9, 11, 0),
35+
(50, 6, 16, 0),
36+
(51, 6, 17, 0),
37+
(52, 6, 18, 0),
38+
(53, 6, 19, 0),
39+
(54, 6, 6, 0),
40+
(55, 6, 7, 0),
41+
(56, 6, 8, 0),
42+
(57, 6, 9, 0),
43+
(58, 6, 10, 0),
44+
(59, 6, 11, 0),
45+
(61, 6, 22, 0),
46+
(62, 6, 20, 0),
47+
(63, 6, 23, 0);
48+
249
INSERT INTO `adm_sequence` (`id_adm_sequence`, `seq_name`, `current_val`, `increment_val`, `length_limitation`, `left_zero_padding`) VALUES
350
(25, 'system_design', 14, 1, 8, 'N'),
451
(26, 'subsys_design', 15, 1, 8, 'N'),

cmdb-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"dependencies": {
2121
"axios": "^0.18.0",
2222
"bpmn-js": "^2.5.1",
23-
"core-js": "^2.6.9",
23+
"core-js": "^2.6.10",
2424
"d3-graphviz": "^2.6.1",
2525
"highlight.js": "^9.15.8",
2626
"husky": "^1.3.1",

cmdb-ui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.webank.cmdb</groupId>
88
<artifactId>cmdb</artifactId>
9-
<version>0.0.1-SNAPSHOT</version>
9+
<version>1.2.0-SNAPSHOT</version>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212
<artifactId>cmdb-ui</artifactId>
-24 KB
Loading

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.webank.cmdb</groupId>
1212
<artifactId>cmdb</artifactId>
13-
<version>0.0.1-SNAPSHOT</version>
13+
<version>1.2.0-SNAPSHOT</version>
1414
<packaging>pom</packaging>
1515
<name>cmdb</name>
1616
<description>cmdb</description>

0 commit comments

Comments
 (0)