Skip to content

Commit

Permalink
Add start and stop aliases to trigger mvn spring-boot commands
Browse files Browse the repository at this point in the history
This commit introduces two new aliases to the devbox.json file: "start" and "stop". These scripts utilize Maven commands to manage the spring-boot application lifecycle, allowing developers to easily start and stop the application.
  • Loading branch information
jcardozo committed Sep 16, 2024
1 parent 67a1089 commit 78ac177
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions devbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
"scripts": {
"test": [
"mvn test"
],
"start": [
"mvn spring-boot:start"
],
"stop": [
"mvn spring-boot:stop"
]
}
}
Expand Down

0 comments on commit 78ac177

Please sign in to comment.