Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcushellberg/travel-tips
https://github.com/marcushellberg/travel-tips
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcushellberg/travel-tips
- Owner: marcushellberg
- License: unlicense
- Created: 2024-05-16T13:19:36.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-24T22:52:37.000Z (6 months ago)
- Last Synced: 2024-10-05T08:20:14.889Z (about 1 month ago)
- Language: Java
- Size: 919 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Travel Tips: a GraalVM native full-stack web app with Hilla and Spring Boot
This demo app shows how to build a full-stack app with Hilla and Spring Boot, and compile it to a native executable with GraalVM.
![Travel Tips](screenshot.png)
## Prerequisites
- [GraalVM](https://www.graalvm.org/)## Development
You can run the app in development mode with the following command:
```bash
mvn
```or by running the `Application.java` class in your IDE.
## Building a native executable
You can build a native executable with the following command:
```bash
mvn -Pproduction -Pnative native:compile
```Run the native executable with the following command:
```bash
target/travel-tips
```