Skip to content

Commit

Permalink
Merge branch 'dev-laohu' into pil0txia/dev
Browse files Browse the repository at this point in the history
# Conflicts:
#	.dockerignore
#	.gitignore
#	README.md
#	docker/Dockerfile
#	frontend/components/client/GrpcClientTable.tsx
#	frontend/components/client/HTTPClientTable.tsx
#	frontend/components/client/TCPClientTable.tsx
#	frontend/components/event/EventTable.tsx
#	frontend/components/eventCatalogs/Create.tsx
#	frontend/components/eventCatalogs/Details.tsx
#	frontend/components/eventCatalogs/constant.ts
#	frontend/components/eventCatalogs/types.ts
#	frontend/components/index/Configuration.tsx
#	frontend/components/index/Endpoint.tsx
#	frontend/components/metrics/MetricsTable.tsx
#	frontend/components/navigation/MenuItem.tsx
#	frontend/components/navigation/Menus.tsx
#	frontend/components/navigation/MenusMobile.tsx
#	frontend/components/navigation/Sidebar.tsx
#	frontend/components/registry/RegistryTable.tsx
#	frontend/components/topic/TopicTable.tsx
#	frontend/components/workflow/Create.tsx
#	frontend/components/workflow/Details/Details.tsx
#	frontend/components/workflow/Details/Instances.tsx
#	frontend/components/workflow/Details/index.ts
#	frontend/components/workflow/constant.ts
#	frontend/components/workflow/types.ts
#	frontend/context/context.tsx
#	frontend/context/reducer.ts
#	frontend/context/type.ts
#	frontend/docker/default.conf
#	frontend/next.config.js
#	frontend/package.json
#	frontend/pages/_app.tsx
#	frontend/pages/_document.tsx
#	frontend/pages/event.tsx
#	frontend/pages/eventCatalogs.tsx
#	frontend/pages/grpc.tsx
#	frontend/pages/http.tsx
#	frontend/pages/index.tsx
#	frontend/pages/metrics.tsx
#	frontend/pages/registry.tsx
#	frontend/pages/tcp.tsx
#	frontend/pages/topic.tsx
#	frontend/pages/workflows.tsx
#	frontend/public/favicon.ico
#	frontend/static/images/logo.png
#	frontend/tsconfig.json
  • Loading branch information
Pil0tXia committed Jan 8, 2024
2 parents 8df7c43 + fac7d3d commit 561acac
Show file tree
Hide file tree
Showing 14 changed files with 309 additions and 50 deletions.
47 changes: 0 additions & 47 deletions .asf.yaml

This file was deleted.

49 changes: 49 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ build/
### STS ###
.apt_generated
.classpath
./**/.classpath
.factorypath
.project
./**/.project
.settings
./**/.settings/
.springBeans
.sts4-cache
bin/
Expand All @@ -34,3 +37,49 @@ out/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store

### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
org.eclipse.core.resources.prefs
org.eclipse.jdt.core.prefs
org.eclipse.m2e.core.prefs
org.eclipse.wst.common.component
org.eclipse.wst.common.project.facet.core.xml
*.prefs

### Java ###
*.class
*.trc

### Package Files ###
*.jar
*.war
*.ear

### Maven ###
.target
target/
./**/target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties

### Log Files ###
*.log
logs/
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
# Getting Started
# EventMesh Dashboard

## Build on source code
## 介绍

## 业务架构

## 技术架构

### 模块依赖图

### 模块介绍

1. eventmesh-dashboard-console 业务模块的代码
2. eventmesh-dashboard-observe 监控模块的代码
3. eventmesh-dashboard-core 对eventmesh以及相关组件的代码
4. eventmesh-dashboard-service 公用接口
5. eventmesh-dashboard-common 公共模块的代码
6. eventmesh-dashboard-view 前端代码

### eventmesh-dashboard-core 介绍

## Build

### Build on source code

```
cd eventmesh-dashboard
Expand All @@ -11,7 +32,7 @@ cd eventmesh-dashboard
java -jar build/libs/eventmesh-dashboard-0.0.1-SNAPSHOT.jar
```

## Build and Run with Docker
### Build and Run with Docker

```
cd eventmesh-dashboard
Expand Down
21 changes: 21 additions & 0 deletions eventmesh-dashboard-common/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.eventmesh.dashboard</groupId>
<artifactId>eventmesh-dashboard</artifactId>
<version>0.0.1</version>
</parent>

<groupId>org.apache.eventmesh.dashboard.common</groupId>
<artifactId>eventmesh-dashboard-common</artifactId>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package org.apache.eventmesh.dashboard.common;

public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
21 changes: 21 additions & 0 deletions eventmesh-dashboard-console/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.eventmesh.dashboard</groupId>
<artifactId>eventmesh-dashboard</artifactId>
<version>0.0.1</version>
</parent>

<groupId>org.apache.eventmesh.dashboard.console</groupId>
<artifactId>eventmesh-dashboard-console</artifactId>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package org.apache.eventmesh.dashboard.console;

public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
21 changes: 21 additions & 0 deletions eventmesh-dashboard-core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.eventmesh.dashboard</groupId>
<artifactId>eventmesh-dashboard</artifactId>
<version>0.0.1</version>
</parent>

<groupId>org.apache.eventmesh.dashboard.core</groupId>
<artifactId>eventmesh-dashboard-core</artifactId>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package org.apache.eventmesh.dashboard.core;

public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
21 changes: 21 additions & 0 deletions eventmesh-dashboard-observe/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.eventmesh.dashboard</groupId>
<artifactId>eventmesh-dashboard</artifactId>
<version>0.0.1</version>
</parent>

<groupId>org.apache.eventmesh.dashboard.observe</groupId>
<artifactId>eventmesh-dashboard-observe</artifactId>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package org.apache.eventmesh.dashboard.observe;

public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
21 changes: 21 additions & 0 deletions eventmesh-dashboard-service/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.eventmesh.dashboard</groupId>
<artifactId>eventmesh-dashboard</artifactId>
<version>0.0.1</version>
</parent>

<groupId>org.apache.eventmesh.dashboard.service</groupId>
<artifactId>eventmesh-dashboard-service</artifactId>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package org.apache.eventmesh.dashboard.service;

public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
Loading

0 comments on commit 561acac

Please sign in to comment.