found that you can work with engine via http request → defold/editor/doc/http-api.md at dev · defold/defold · GitHub
if i type follwing to terminal it shows json table with list of available commands:
curl http://localhost:43257/command/
but if type:
curl http://localhost:43257/command/build
# output: 405 Method Not Allowed
curl http://localhost:43257/command/thiscommanddoesntexists
# output: 405 Method Not Allowed
any tips?