How to organize models, plugins & simulations?
I am new to Gazebo. I want to create a model of my robot (with all plugins), several simulations and put them in a GitHub repo so my coworkers and users can run them.
In the ideal situation, I have models, plugins and simulations directories containing corresponding files. The files need to reference each other, so they use relative paths. However, it seems that relative paths are not supported by Gazebo. I have found out, I can use environment variables to set paths for each item (models, plugins...). However, this requires to export these variables which either:
user has to add manually (too complicated for newbies)
I have to provide a startup script (unintuitive for user "who just want to open Gazebo simulation" - especially when upon invoking Gazebo, it does not shows errors about missing files and silently fails).
What is the best workflow to organize models? Is there a preferred one?