We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30aa5c1 commit edfa677Copy full SHA for edfa677
1 file changed
packages/cli/src/commands/serve.ts
@@ -42,6 +42,7 @@ export async function serve(options: { port: number; dir: string }) {
42
43
server.listen(options.port, () => {
44
console.log(chalk.green(`\n🚀 Server ready at http://localhost:${options.port}`));
45
+ console.log(chalk.blue(`📖 OpenAPI Spec: http://localhost:${options.port}/openapi.json`));
46
console.log(chalk.gray('\nTry a curl command:'));
47
console.log(`curl -X POST http://localhost:${options.port} -H "Content-Type: application/json" -d '{"op": "find", "object": "YourObject", "args": {}}'`);
48
});
0 commit comments