https://github.com/goodforgod/micronaut-template
📜 Micronaut Template.
https://github.com/goodforgod/micronaut-template
gradle http http-server micronaut micronaut-http micronaut-template template
Last synced: about 1 month ago
JSON representation
📜 Micronaut Template.
- Host: GitHub
- URL: https://github.com/goodforgod/micronaut-template
- Owner: GoodforGod
- License: apache-2.0
- Created: 2020-09-13T21:48:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-25T12:37:13.000Z (about 4 years ago)
- Last Synced: 2025-04-09T00:07:12.392Z (about 1 year ago)
- Topics: gradle, http, http-server, micronaut, micronaut-http, micronaut-template, template
- Language: Java
- Homepage:
- Size: 196 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Micronaut Application Template
Template for Micronaut Application for Java 17+.
## Features
- Gradle, build, wrapper, properties configured.
- [Code Style](https://goodforgod.dev/posts/3/), formatting , .gitignore configured.
- application.yaml, logback.xml, environment variables for local ruin\test configured.
- Dockerfile for packaging application configured.
## Run
```shell
./gradlew run
```
## Test
```shell
./gradlew test
```
## Code Style
Code Style is provided and configured with Spotless, you can read more about [Code Style here](https://goodforgod.dev/posts/3/)
Check Code Style:
```shell
./gradlew spotlessCheck
```
Apply Code Style:
```shell
./gradlew spotlessApply
```