Skip to content

Commit 62e10aa

Browse files
committed
dev ui page and its sections
1 parent 0eb7650 commit 62e10aa

12 files changed

+70
-4
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<section class="dev-ui-build-container-image">
2+
<h3>Build Container Image</h3>
3+
<p>Create production-ready container images directly from the Dev UI.</p>
4+
</section>

_includes/dev-ui-configuration.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<section class="dev-ui-configuration">
2+
<h3>Configuration Management</h3>
3+
<p>Manage application settings and configurations with an intuitive interface.</p>
4+
</section>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<section class="dev-ui-continuous-testing">
2+
<h3>Continuous Testing</h3>
3+
<p>Run continuous tests directly in the Dev UI to ensure code quality and catch regressions early.</p>
4+
</section>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<section class="dev-ui-db-schema-generation">
2+
<h3>DB Schema Generation</h3>
3+
<p>Automatically generate database schemas and SQL scripts for faster development.</p>
4+
</section>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<section class="dev-ui-dependency-visualization">
2+
<h3>Dependency Visualization</h3>
3+
<p>Visualize your application dependencies to optimize and debug relationships.</p>
4+
</section>

_includes/dev-ui-features.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<section class="dev-ui-features">
2+
<h2>Dev UI Features</h2>
3+
<p>Enhance your development workflow with these powerful features:</p>
4+
<ul>
5+
<li>Configuration Management</li>
6+
<li>Visualize Endpoints</li>
7+
<li>DB Schema Generation</li>
8+
<li>Dependency Visualization</li>
9+
<li>Continuous Testing</li>
10+
<li>Build Container Image</li>
11+
<li>Manage Dev Services</li>
12+
<li>Keycloak Integration</li>
13+
<li>Kafka UI Integration</li>
14+
</ul>
15+
</section>

_includes/dev-ui-hero.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<section class="dev-ui-hero">
2+
<h1>Dev UI</h1>
3+
<p>Explore the comprehensive features of the Quarkus Dev UI to supercharge your development experience.</p>
4+
</section>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<section class="dev-ui-kafka-ui-integration">
2+
<h3>Kafka UI Integration</h3>
3+
<p>Visualize and interact with Kafka topics, consumer groups, and nodes through the Dev UI.</p>
4+
</section>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<section class="dev-ui-keycloak-integration">
2+
<h3>Keycloak Integration</h3>
3+
<p>Integrate with Keycloak to manage authentication and authorization during development.</p>
4+
<p>
5+
some image
6+
</p>
7+
</section>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<section class="dev-ui-manage-dev-services">
2+
<h3>Manage Dev Services</h3>
3+
<p>Provision and manage dev services like databases and message brokers for your application.</p>
4+
</section>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<section class="dev-ui-visualize-endpoints">
2+
<h3>Visualize Endpoints</h3>
3+
<p>Interact with application endpoints effortlessly using the Dev UI.</p>
4+
</section>

_layouts/dev-ui.html

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
---
22
layout: base
33
---
4-
<div class="quarkus-homepage">
5-
<h1>
6-
dev-ui
7-
</h1>
4+
<div class="quarkus-dev-ui-page">
5+
{% include dev-ui-hero.html %}
6+
{% include dev-ui-features.html %}
7+
{% include dev-ui-configuration.html %}
8+
{% include dev-ui-visualize-endpoints.html %}
9+
{% include dev-ui-db-schema-generation.html %}
10+
{% include dev-ui-dependency-visualization.html %}
11+
{% include dev-ui-continuous-testing.html %}
12+
{% include dev-ui-build-container-image.html %}
13+
{% include dev-ui-manage-dev-services.html %}
14+
{% include dev-ui-keycloak-integration.html %}
15+
{% include dev-ui-kafka-ui-integration.html %}
816
</div>

0 commit comments

Comments
 (0)