diff --git a/gymboard-api/start-dev.sh b/gymboard-api/start-dev.sh new file mode 100755 index 0000000..3e8e46e --- /dev/null +++ b/gymboard-api/start-dev.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# Starts the api application in development mode. Note that the database +# should be started via `docker-compose up` in the gymboard root dir. + +echo "Starting gymboard-api development server." +./mvnw spring-boot:run -Dspring-boot.run.profiles=development diff --git a/gymboard-cdn/start-dev.sh b/gymboard-cdn/start-dev.sh new file mode 100755 index 0000000..3d9d23a --- /dev/null +++ b/gymboard-cdn/start-dev.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# Starts the CDN application in development mode. Note that the database +# should be started via `docker-compose up` in the gymboard root dir. + +echo "Starting gymboard-cdn development server." +./mvnw spring-boot:run -Dspring-boot.run.profiles=development diff --git a/gymboard-search/start-dev.sh b/gymboard-search/start-dev.sh new file mode 100755 index 0000000..4121999 --- /dev/null +++ b/gymboard-search/start-dev.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# Starts the search application in development mode. Note that the database +# should be started via `docker-compose up` in the gymboard root dir. + +echo "Starting gymboard-search development server." +./mvnw spring-boot:run -Dspring-boot.run.profiles=development