Marek Czernek
2020-05-15 1264f7771436a621072583868798dcd1e40c568c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>exchange - 1.0-SNAPSHOT</title>
    <style>
        h1, h2, h3, h4, h5, h6 {
            margin-bottom: 0.5rem;
            font-weight: 400;
            line-height: 1.5;
        }
 
        h1 {
            font-size: 2.5rem;
        }
 
        h2 {
            font-size: 2rem
        }
 
        h3 {
            font-size: 1.75rem
        }
 
        h4 {
            font-size: 1.5rem
        }
 
        h5 {
            font-size: 1.25rem
        }
 
        h6 {
            font-size: 1rem
        }
 
        .lead {
            font-weight: 300;
            font-size: 2rem;
        }
 
        .banner {
            font-size: 2.7rem;
            margin: 0;
            padding: 2rem 1rem;
            background-color: #00A1E2;
            color: white;
        }
 
        body {
            margin: 0;
            font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        }
 
        code {
            font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            font-size: 87.5%;
            color: #e83e8c;
            word-break: break-word;
        }
 
        .left-column {
            padding: .75rem;
            max-width: 75%;
            min-width: 55%;
        }
 
        .right-column {
            padding: .75rem;
            max-width: 25%;
        }
 
        .container {
            display: flex;
            width: 100%;
        }
 
        li {
            margin: 0.75rem;
        }
 
        .right-section {
            margin-left: 1rem;
            padding-left: 0.5rem;
        }
 
        .right-section h3 {
            padding-top: 0;
            font-weight: 200;
        }
 
        .right-section ul {
            border-left: 0.3rem solid #00A1E2;
            list-style-type: none;
            padding-left: 0;
        }
 
    </style>
</head>
<body>
 
<div class="banner lead">
    Your new Cloud-Native application is ready!
</div>
 
<div class="container">
    <div class="left-column">
        <p class="lead"> Congratulations, you have created a new Quarkus application.</p>
 
        <h2>Why do you see this?</h2>
 
        <p>This page is served by Quarkus. The source is in
            <code>src/main/resources/META-INF/resources/index.html</code>.</p>
 
        <h2>What can I do from here?</h2>
 
        <p>If not already done, run the application in <em>dev mode</em> using: <code>mvn compile quarkus:dev</code>.
        </p>
        <ul>
            <li>Add REST resources, Servlets, functions and other services in <code>src/main/java</code>.</li>
            <li>Your static assets are located in <code>src/main/resources/META-INF/resources</code>.</li>
            <li>Configure your application in <code>src/main/resources/application.properties</code>.
            </li>
        </ul>
 
        <h2>How do I get rid of this page?</h2>
        <p>Just delete the <code>src/main/resources/META-INF/resources/index.html</code> file.</p>
    </div>
    <div class="right-column">
        <div class="right-section">
            <h3>Application</h3>
            <ul>
                <li>GroupId: com.redhat</li>
                <li>ArtifactId: exchange</li>
                <li>Version: 1.0-SNAPSHOT</li>
                <li>Quarkus Version: 1.2.1.Final</li>
            </ul>
        </div>
        <div class="right-section">
            <h3>Next steps</h3>
            <ul>
                <li><a href="https://quarkus.io/guides/maven-tooling.html" target="_blank">Setup your IDE</a></li>
                <li><a href="https://quarkus.io/guides/getting-started.html" target="_blank">Getting started</a></li>
                <li><a href="https://quarkus.io" target="_blank">Quarkus Web Site</a></li>
            </ul>
        </div>
    </div>
</div>
 
 
</body>
</html>