Hi all, hope you’re doing well!
I have a dbt-rpc server dockerized and running in an ECS instance on AWS and I trigger this app using a POST request to its address in which I specify the method (usually ‘run’)
I tried to post this request but of course, was refused because it doesn’t exist that method
{
"jsonrpc": "2.0",
"method": "docs.serve",
"id": "2db9lafe-9b39-41ef-828c-15e03dd6a0a0"
}
I’d like to know if exists a method to start the docs server remotely (dbt docs serve), or if exists any workaround to see the docs remotely.
Thank you!