2023-03-24 12:14:59 +00:00
|
|
|
#!/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."
|
2023-03-24 12:18:30 +00:00
|
|
|
./gen_keys.d
|
2023-03-25 10:29:15 +00:00
|
|
|
./mvnw clean spring-boot:run -Dspring-boot.run.profiles=development
|