An open API service indexing awesome lists of open source software.

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

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)