-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a Dockerfile #8
base: master
Are you sure you want to change the base?
Conversation
Oh, that may be actually useful, however some stuff might be fixed at project level, I think. On idle server: that's normal; server listens for incoming data from Later on this data might be queried from different tools (we currently develop only IJ/RubyMine plugin for that). What is your use case? |
Thanks for the quick reply, @valich. I'm working on a gem that will generate sequence diagrams from ruby code, and am interested in seeing how this effort might help inform the other. The very small beginning of that gem can be found here: https://github.com/nash-rb/sequence-diagram-rb That gem was inspired by the ability to generate sequence diagrams from markdown, which IntelliJ Ultimate supports pretty nicely. Would some portion of this Dockerfile be something you'd merge if I modified it? |
@jwsloan That's interesting, thanks! So, you may want to use such info to include parameters info to your diagrams, right?
Sure, it's just I would like to discuss/understand how to use it. From my perspective it might be used as a "server" which accepts incoming data from So, at this particular moment I have the following suggestions:
|
What I'm struggling with currently is to determine the sender of a message. It's fairly straightforward to know who received a given message, but the sender seems to be tricky. I'm also not sure how we'll detect and accurately represent any iteration that occurs. My thought on the Dockerfile was mainly a way for someone interested to quickly have the server up and running, or even just an environment they could spin up to easily start developing/contributing. Those sound like great fixes. I'll watch for #7 to get complete, and then finish this PR. Would you like me to close it until then? |
That's up to you, but I would be glad to accept such contribution since configuring stuff can be cumbersome indeed. @ViugiNick Do you have any thoughts on the sender calculation? |
I wanted to give this a try, and thought I would provide the Dockerfile I used to try to get the server up and running.
It's not quite there... I get this far:
At that point, it never progresses. I've attempted to fix the logger class issue, but have not figured it out. Maybe someone can help?