Add support for jRebel hot reloading.

The java files in the repository can be hot reloaded when started from the share docker-file.
This commit is contained in:
Tom Page
2019-10-18 16:14:00 +01:00
parent e6983ce90f
commit aa3dccd5b5
2 changed files with 10 additions and 0 deletions

3
.gitignore vendored
View File

@@ -6,6 +6,7 @@
.project
.settings
.history
*.bak
*.eml
*.iml
*.log*
@@ -16,6 +17,8 @@ build.local.properties
dist
explodedDeps
local.properties
rebel.xml
rebel-remote.xml
target
test-output

View File

@@ -170,3 +170,10 @@ docker-compose up
> Be aware of the fact that the Share images can not be started independently from Repo
e.g. In order to start an instance of rm-enterprise-repo and rm-enterprise-share, the above command must be run in rm-enterprise-share after the images have been built.
## Start the Docker images with jRebel in remote server mode
If you have a license for jRebel then this can be used from the rm-community-share or rm-enterprise-share directories with:
```
docker-compose -f docker-compose.yml -f jrebel-docker-compose.yml --project-name agsdev up --build --force-recreate
```