I have generated a Jhipster app using JDL. Runs in docker with database and Keycloak great.
Then I make changes within VS Code to the HTML and re generate. But my changes are not showing - the new version is the same as the original.
What could the possible reasons be for not picking up the new code?
What approaches to de-bugging are there?
Points:
- Using VS Code (previous experience with IntelliJ showed no problems)
- Have to lowered version of <jib-maven-plugin.version>3.4.4 to <jib-maven-plugin.version>3.4.2 because 3.4.4 hangs at 80% when building image
- Docker image build command is "./mvnw package -Pdev verify jib:dockerBuild -DskipTests"
- Output does not contain any errors, although has "The credential helper (docker-credential-desktop) has nothing for server URL: registry-1.docker.io"#
- Docker run command is "docker-compose -f src/main/docker/app.yml -p "aaa" up -d", which fires up containers nicely
- Delete Docker Image and re-build. No help.
- Committed all changes to git. No help.
- Rebooted machine. No help.
- Run browser in Private mode and clear caches. No help.
- Fire up with "npm start", but still shows unchanged screens showing on localhost:9000. Making more changes to the html fires the build on :9000 again, but these changes not showing either.