https://github.com/alitari/vscode-remote-micronaut-mvn
example for micronaut mvn project with vscode-remote
https://github.com/alitari/vscode-remote-micronaut-mvn
micronaut vscode-remote
Last synced: 4 months ago
JSON representation
example for micronaut mvn project with vscode-remote
- Host: GitHub
- URL: https://github.com/alitari/vscode-remote-micronaut-mvn
- Owner: alitari
- Created: 2019-08-11T12:29:31.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-05T22:22:14.000Z (over 2 years ago)
- Last Synced: 2025-08-07T01:42:50.577Z (10 months ago)
- Topics: micronaut, vscode-remote
- Language: Dockerfile
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vscode Remote Development Containers: [Micronaut](https://micronaut.io)
## generated app
```bash
mn create-app -i -b maven example.micronaut.complete --features=graal-native-image,http-server,junit
```
## run
Start the app with:
```bash
mvn exec:exec
```
## test
In a new terminal create a request:
```bash
curl localhost:8080/conferences/random
```
## debug
attach debug port with `F5`
## build jar
```bash
mvn clean package
```
## build native executable
```bash
native-image --no-server -cp target/complete-*.jar
```
## run native executable
```bash
./complete
```
## build docker image with native executable
```bash
./docker-build.sh
```