@voltagent/server-core 1.0.20 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3825,6 +3825,12 @@ function printServerStartup(port, options = {}) {
|
|
|
3825
3825
|
console.log(
|
|
3826
3826
|
`${colors.green} \u2713 ${colors.bright}HTTP Server: ${colors.reset}${colors.white}http://localhost:${port}${colors.reset}`
|
|
3827
3827
|
);
|
|
3828
|
+
console.log(
|
|
3829
|
+
`${colors.blue} \u21AA ${colors.bright}Share it: ${colors.reset}${colors.white}pnpm volt tunnel ${port}${colors.reset} ${colors.dim}(secure HTTPS tunnel for teammates)${colors.reset}`
|
|
3830
|
+
);
|
|
3831
|
+
console.log(
|
|
3832
|
+
`${colors.blue} ${colors.dim}Docs:${colors.reset} https://voltagent.dev/docs/deployment/local-tunnel/`
|
|
3833
|
+
);
|
|
3828
3834
|
if (shouldEnableSwaggerUI2) {
|
|
3829
3835
|
console.log(
|
|
3830
3836
|
`${colors.green} \u2713 ${colors.bright}Swagger UI: ${colors.reset}${colors.white}http://localhost:${port}/ui${colors.reset}`
|