-
Notifications
You must be signed in to change notification settings - Fork 15
Fix #153: Cleanup pgAdmin dev service #151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| card.addPage(portPage); | ||
|
|
||
| final PageBuilder pgAdminPage = Page.externalPageBuilder("Postgre Admin UI") | ||
| final PageBuilder pgAdminPage = Page.externalPageBuilder("pgAdmin UI") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed spelling and name.
| final PageBuilder pgAdminPage = Page.externalPageBuilder("pgAdmin UI") | ||
| .icon("font-awesome-solid:database") | ||
| .url(managementBase); | ||
| .url(managementBase, managementBase) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Allow the pgAdmin to be opened in new tab
| import io.quarkus.vertx.http.deployment.NonApplicationRootPathBuildItem; | ||
| import io.quarkus.vertx.http.deployment.RouteBuildItem; | ||
|
|
||
| @BuildSteps(onlyIfNot = IsNormal.class, onlyIf = GlobalDevServicesConfig.Enabled.class) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Respect quarkus.devservices.enabled=false flag if devservices are disabled entirely.
ricardozanini
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once we merge, I'll do a patch release.
|
Any chance to get this merged and released? |
|
Fix #153: Cleanup pgAdmin dev service