Added start-dev scripts.

This commit is contained in:
Andrew Lalis 2023-03-24 13:14:59 +01:00
parent 116bfa07bd
commit 56c105a240
3 changed files with 21 additions and 0 deletions

7
gymboard-api/start-dev.sh Executable file
View File

@ -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

7
gymboard-cdn/start-dev.sh Executable file
View File

@ -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

7
gymboard-search/start-dev.sh Executable file
View File

@ -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