Define deployment endpoint for modeller

Can we define the modeller deployment end point with a parameter in the modeller plists ? and not only with the modeller dialog on “configure Deployment Endpoint”

What are you referring to as the modeller plists?

I was thinking that the default value of the configure deployment endpoint in the modeller dialog was defined in a parameter list. on MacOSX, plists are often used to define and store application parameters.

@barmac Can you help?

Actually, we use a JSON file to store application parameters. On MacOS, you can find the configuration file under following directory:
~/Library/Application Support/camunda-modeler/config.json
To modify the endpoint, simply replace value for workspace.endpoints property. Please bear in mind that only the first value in array is used by Modeler.
E.g.

    "workspace": {
        "activeTab": 0,
        "endpoints": [
            "http://localhost:8080/engine-rest/deployment/create"
        ]
1 Like

Thank you ,

this is exactly what I was looking for …

I will check tonight

it works
thanx