diff --git a/README.md b/README.md index a2cab95e..df8f5988 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,15 @@ __Jersey Webservice Template__ (__JWT__) is a [JSR 370] webservice template that through [GitHub templates]. One can think of JWT as the Jersey/Jetty version of [Spring Initializr]. At the end of the day, JWT helps organization to improve the velocity and quality of their teams' work +✨ Features +----------- + +- Out-of-the-box healthcheck endpoint +- Docusaurus-based documentation site freely hosted on GitHub Pages +- Dockerized webservice +- ELK application monitoring +- Flexible webservice configuration + Quick Start ----------- diff --git a/docs/docs/intro.md b/docs/docs/intro.md index e71df113..471a5497 100644 --- a/docs/docs/intro.md +++ b/docs/docs/intro.md @@ -42,10 +42,12 @@ applies ::: -That's it. A healthcheck endpoint is now ready at localhost:8080/v1/data/healthcheck. At this point, JWT has generated -a Java webservice project with just what we need to start quickly. Developer can now start adding business value and -__get work done much faster in a standard way__. The following sections of this documentation contain further details on -how to proceed next. +After Creating the Repository +----------------------------- + +At this point, JWT has generated a Java webservice project with just what we need to start quickly. Developer can now +start adding business value and __get work done much faster in a standard way__. The following sections of this +documentation contain further details on how to proceed next. - [Development](development) - [Configuration](configuration) diff --git a/docs/src/pages/index.tsx b/docs/src/pages/index.tsx index ee6e2bbb..88f64c6b 100644 --- a/docs/src/pages/index.tsx +++ b/docs/src/pages/index.tsx @@ -31,13 +31,13 @@ function HomepageHeader() { {siteConfig.title}

- You can innovate given the right technology + We can innovate given the right technology

- Documentation + Start Adding Business Values
diff --git a/src/test/groovy/com/qubitpi/ws/jersey/template/DockerITSpec.groovy b/src/test/groovy/com/qubitpi/ws/jersey/template/DockerITSpec.groovy index ff1c144d..177d0e90 100644 --- a/src/test/groovy/com/qubitpi/ws/jersey/template/DockerITSpec.groovy +++ b/src/test/groovy/com/qubitpi/ws/jersey/template/DockerITSpec.groovy @@ -54,6 +54,7 @@ class DockerITSpec extends Specification { } } + @Deprecated private static boolean isLocal() { return System.properties['os.name'] as String in LOCAL_ENVS }