This commit is contained in:
2024-08-06 19:18:00 +08:00
parent 5b24827455
commit 92d0019cc1
2 changed files with 9 additions and 0 deletions

4
template/run.bat Executable file
View File

@@ -0,0 +1,4 @@
@echo off
cd /d %~dp0
.\mvnw.cmd -Dstyle.color=always spring-boot:run %*

5
template/run.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
cd $(dirname $0)
./mvnw -Dstyle.color=always spring-boot:run $@