rkrug / plantuml

R package to build UML graphs using plantuml
https://rkrug.github.io/plantuml/index.html
GNU General Public License v3.0
76 stars 8 forks source link

Use local web server instead of cli #30

Closed rkrug closed 1 year ago

rkrug commented 2 years ago

As detailed in https://plantuml.com/picoweb, plantuml.jar comes with it's own sim[le web server. At tha moment, I am using two different paths to render plantuml graphs locally (via cli) or remotely (web server). This could be simplified by always using the web server, only by changing the URL to localhost:

java -jar plantuml.jar -picoweb:8000:127.0.0.1

and point the server address to

http://127.0.0.1:8080

rkrug commented 2 years ago

It works - so I can scrap the cli code and just change the URL

See branch UsePicoreWebServer for details and progress.