-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1251 from cescoffier/features/documentation-impro…
…vements Mimic attribute inclusion
- Loading branch information
Showing
37 changed files
with
69 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
include::./attributes.adoc[] | ||
= Internal glossary | ||
|
||
This is not a document to be published outside. | ||
This is a collection of preferred term in the documentation and website. | ||
Please stay witin these terms for consistency. | ||
Please stay within these terms for consistency. | ||
|
||
Live reload:: for our `quarkus:dev` capability | ||
GraalVM:: preferred term for the VM creating native executable. No space. | ||
Substrate VM:: non-preferred. Only if you want to clarify which part of GraalVM we use. | ||
Native Executable:: the executable that is compiled to native 1s and 0s | ||
Docker image:: for the actual `Dockerfile` definition and when the tool chain is involved | ||
Container:: when we discuss Quarkus running in... containers | ||
Supersonic Subatomic Java:: our tagline | ||
Kubernetes Native Java:: our preferred tagline to say that we rock for containers | ||
Developer Joy:: for everything going from live reload to the opinionated layer to a single config file | ||
Unify Imperative and Reactive:: imperative and reactive. 'Nuff said. | ||
Best of breed frameworks and standards:: when we explain our stack | ||
* Live reload:: for our `quarkus:dev` capability | ||
* GraalVM:: preferred term for the VM creating native executable. No space. | ||
* Substrate VM:: non-preferred. Only if you want to clarify which part of GraalVM we use. | ||
* Native Executable:: the executable that is compiled to native 1s and 0s | ||
* Docker image:: for the actual `Dockerfile` definition and when the tool chain is involved | ||
* Container:: when we discuss Quarkus running in... containers | ||
* Supersonic Subatomic Java:: our tagline | ||
* Kubernetes Native Java:: our preferred tagline to say that we rock for containers | ||
* Developer Joy:: for everything going from live reload to the opinionated layer to a single config file | ||
* Unify Imperative and Reactive:: imperative and reactive. 'Nuff said. | ||
* Best of breed frameworks and standards:: when we explain our stack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= {project-name} - Building a Native Image | ||
|
||
This guide covers: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
== {project-name} - Building a Custom SubstrateVM | ||
include::./attributes.adoc[] | ||
= {project-name} - Building a Custom SubstrateVM | ||
|
||
=== Prerequisites | ||
== Prerequisites | ||
|
||
==== Install JVMCI | ||
=== Install JVMCI | ||
|
||
Before anything can be done you must first install a JVMCI build. | ||
|
||
|
@@ -24,7 +25,7 @@ export JAVA_HOME=/opt/labsjdk1.8.0_172-jvmci-0.46/ | |
export PATH=$JAVA_HOME/bin:$PATH | ||
---- | ||
|
||
==== Install MX | ||
=== Install MX | ||
|
||
Now you need to install Graal’s special build tool, `mx`. | ||
|
||
|
@@ -34,7 +35,7 @@ git clone [email protected]:graalvm/mx.git | |
export PATH=`pwd`/mx:$PATH | ||
---- | ||
|
||
=== Checkout and build SubstrateVM | ||
== Checkout and build SubstrateVM | ||
|
||
You can now check-out and build Substrate: | ||
|
||
|
@@ -55,7 +56,7 @@ mx native-image HelloWorld | |
./helloworld | ||
---- | ||
|
||
=== Building a custom GraalVM distribution | ||
== Building a custom GraalVM distribution | ||
|
||
In order to create a custom GraalVM distribution (necessary for usage | ||
in quarkus) you must switch to the vm subdirectory, and use special | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= {project-name} - Contexts and Dependency Injection | ||
|
||
:numbered: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= {project-name} - Extension Authors Guide | ||
|
||
:numbered: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= {project-name} - Frequently Asked Questions | ||
|
||
:toc: macro | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= {project-name} - Creating Your First Application | ||
|
||
:toc: macro | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= {project-name} - Gradle Plugin Repositories | ||
|
||
// tag::repositories[] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= Building {project-name} apps with Gradle | ||
|
||
== Gradle configuration | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= {project-name} | ||
|
||
include::quarkus-intro.adoc[tag=intro] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= Building {project-name} apps with Maven | ||
|
||
[[build-tool-maven]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= {project-name} - Measuring Performance | ||
|
||
This guide covers: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include::./attributes.adoc[] | ||
= What is {project-name} | ||
|
||
:toc: macro | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters