what's the easiest way to run datahub-gms locally ...
# getting-started
b
what's the easiest way to run datahub-gms locally in debug mode?
m
granted, that's for dev images, which means you need to build locally. if you don't want to do that I think you can still edit the non-dev compose file and it will work with latest
s
i suggest setup gradle task in IntelliJ and run debug
n
Set up a remote debugger in Intelij. In the terminal after setting all the env variables per the Docker script start GMS with jetty-runner
java -jar -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 jetty-runner.jar war.war
b
thank you guys!
ended up using
./gradlew :gms:war:run  --debug-jvm
to avoid container deploy