-
Hello, I'm currently running an agent with veramo cli.
Thanks for taking time out from your busy schedule. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello, these are all excellent questions.
Normally, when you just run
I hope this info helps. Perhaps if you describe your use case in more detail I can provide more concrete answers. |
Beta Was this translation helpful? Give feedback.
Hello, these are all excellent questions.
/open-api.json
. This is one of the routes that is served when you runveramo server
.You can see all the default routes in the
agent.yml / server
config section.The default routes are
/messaging
,/agent
,/open-api.json
,/api-docs
Normally, when you just run
veramo server
the agent useshttp://localhost:3332
to listen for requests. You can browse tohttp://localhost:3332/api-docs
to see it in action.If you want to use
https://explore.veramo.dev
with your agent, your agent needs to be accessible from the web.We've found it easy to work with ngrok.io to get a public endpoint for a locally running agent.
Altern…