Added start-dev scripts.
This commit is contained in:
parent
116bfa07bd
commit
56c105a240
|
@ -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
|
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue