diff options
-rw-r--r-- | certService/README.md | 6 | ||||
-rw-r--r-- | certService/pom.xml | 10 |
2 files changed, 16 insertions, 0 deletions
diff --git a/certService/README.md b/certService/README.md index 443390b3..d133e9a3 100644 --- a/certService/README.md +++ b/certService/README.md @@ -18,6 +18,12 @@ More information about the project and all its functionalities you can find unde mvn spring-boot:run ``` + +### Running Locally with Developer Tools + ``` + mvn spring-boot:run -Pdev + + ``` ### Project building ``` diff --git a/certService/pom.xml b/certService/pom.xml index a8a5296c..2064d58e 100644 --- a/certService/pom.xml +++ b/certService/pom.xml @@ -141,6 +141,16 @@ <profiles> <profile> + <id>dev</id> + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-devtools</artifactId> + <optional>true</optional> + </dependency> + </dependencies> + </profile> + <profile> <id>docker-staging</id> <properties> <docker.tag>${project.version}-STAGING-${maven.build.timestamp}</docker.tag> |