diff --git a/template/run.bat b/template/run.bat new file mode 100755 index 0000000..e9956c1 --- /dev/null +++ b/template/run.bat @@ -0,0 +1,4 @@ +@echo off +cd /d %~dp0 + +.\mvnw.cmd -Dstyle.color=always spring-boot:run %* diff --git a/template/run.sh b/template/run.sh new file mode 100755 index 0000000..9d027d7 --- /dev/null +++ b/template/run.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +cd $(dirname $0) + +./mvnw -Dstyle.color=always spring-boot:run $@