Are there any best practices for thes setup of a local development environment?
Would be nice to see how others do it. ![]()
I checkout the source and import it to IntelliJ. Then install a complete openHAB on the same machine and deploy bundles to that instance. If necessary, I attach the debugger via remote debugging.
1 Like
same here
- IntelliJ as IDE
- checkout/commit with command line git (“git clone” and afterwards “git fetch upstream/main & git rebase main & git checkout -b ”
- build with mvn in command line (mvn spotless:apply & mvn clean install & mvn karaf:kar)
2 Likes
Thank you already, I currently have the same setup, but
for me it would be interesting to see how others set up an environment for themselves with docker ![]()
This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.