https://github.com/hyunk3l/micronaut-kotlin-example
Example of Micronaut framework using Kotlin
https://github.com/hyunk3l/micronaut-kotlin-example
cloud framework java kotlin micronaut
Last synced: 7 months ago
JSON representation
Example of Micronaut framework using Kotlin
- Host: GitHub
- URL: https://github.com/hyunk3l/micronaut-kotlin-example
- Owner: Hyunk3l
- Created: 2019-03-10T21:04:31.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-27T13:29:34.000Z (almost 6 years ago)
- Last Synced: 2025-01-24T10:47:35.711Z (about 1 year ago)
- Topics: cloud, framework, java, kotlin, micronaut
- Language: Kotlin
- Size: 129 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Micronaut framework example using Kotlin
## How to run
Run the app in your terminal:
```
./gradlew run
```
## Requests
Open terminal and run:
```
curl -i http://localhost:8080/hello
```
## How to run tests
In terminal:
```
./gradlew test
```
## Utils
How to install Micronaut CLI in your Mac:
```
brew install micronaut
```
Now you can use it to create your micronaut app using Kotlin:
```
mn create-app example.micronaut.complete --features=kotlin
```
## Useful links
* [Micronaut](https://micronaut.io/)
* [Creating your first Micronaut Kotlin app](https://guides.micronaut.io/creating-your-first-micronaut-app-kotlin/guide/index.html)
* [my blog](https://www.fabridinapoli.com)