Skip to content

Commit

Permalink
Merge pull request quarkusio#7929 from geoand/banner-doc
Browse files Browse the repository at this point in the history
Add section about how to configure the banner
  • Loading branch information
gsmet authored Mar 18, 2020
2 parents 439058e + b46e0f4 commit 5f35935
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/src/main/asciidoc/getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,13 @@ So if you want to deploy your application somewhere, you need to copy the _runne

NOTE: Before running the application, don't forget to stop the hot reload mode (hit `CTRL+C`), or you will have a port conflict.

[#banner]
== Configuring the banner

By default when a Quarkus application starts (in regular or dev mode), it will display an ASCII art banner. The banner can be disabled by setting `quarkus.banner.enabled=false` in `application.properties`,
by setting the `-Dquarkus.banner.enabled=false` Java System Property, or by setting the `QUARKUS_BANNER_ENABLED` environment variable to `false`.
Furthermore, users can supply a custom banner by placing the banner file in `src/main/resources` and configuring `quarkus.banner.path=name-of-file` in `application.properties`.

== What's next?

This guide covered the creation of an application using Quarkus.
Expand Down

0 comments on commit 5f35935

Please sign in to comment.