(Very early part) Feat: Add Solon Admin #138
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It's WIP now, don't merge it until it marked ready for review!
What's been added?
This PR added a lightweight, frontend and backend separated monitor tools named
Solon Admin
, including in_solon_tools
module, provided 3 modules namedsolon-admin-client
,solon-admin-server
,solon-admin-server-ui
. it's quite like the spring-boot-admin project.The
solon-admin-server-ui
module is a Maven project contains a Vite project, build as a submodule ofsolon-admin-server
, provided frontend web page of server instance.How to use it?
solon-admin-server
andsolon-admin-client
separately to your Maven/Gradle projects, thesolon-admin-server-ui
module has been packaged intosolon-admin-server
module.@EnableAdminServer
annotation to the main class of your server instance.@EnableAdminClient
annotation to the main class of your every client instances.How to configure it?
WIP...