Skip to content

Commit

Permalink
Fix run command for using the app locally without Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
miguno committed Aug 26, 2024
1 parent 85ee5e9 commit 8182d13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ $ curl http://localhost:8123/status
{"status":"idle"}
```

# Notes
# Local usage without Docker

You can also build, test, package, and run the Java application locally
(without Docker) if you have JDK 22+ installed. You do not need to have Maven
Expand All @@ -125,8 +125,8 @@ $ ./mvnw clean verify package
# Run the application locally.
$ java -jar target/app.jar

# Alternatively, you can run the application in development mode with hot reloading.
$ ./mvnw quarkus:dev
# Alternatively, run the application locally via Spring Boot's maven targets.
$ ./mvnw spring-boot:run
```

# Appendix: Usage with just
Expand Down

0 comments on commit 8182d13

Please sign in to comment.