-
我使用pnpm run dev & 之后正常访问, 但是过一段时间进程自动挂死. 请问log在哪里,如何查找原因. |
Beta Was this translation helpful? Give feedback.
Answered by
ddiu8081
Mar 14, 2023
Replies: 3 comments 3 replies
-
不建议在正式使用的场合使用 要稳定部署,可以使用
要实现自动重启,可使用 pm2 等工具运行 |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
seramat
-
谢谢 我试过了 node也是18+ 报一个 module错误,不知道咋回事 后来用docker可以了 谢谢回复
获取 Outlook for iOS<https://aka.ms/o0ukef>
…________________________________
发件人: Diu ***@***.***>
发送时间: Sunday, March 19, 2023 2:08:45 PM
收件人: ddiu8081/chatgpt-demo ***@***.***>
抄送: HaoXuan ***@***.***>; Comment ***@***.***>
主题: Re: [ddiu8081/chatgpt-demo] node进程挂死 (Discussion #254)
build命令打包后的产物在dist目录,可独立把dist目录上传至服务器。服务器需要配置 node 18+环境,使用 node 或 pm2<https://github.com/Unitech/pm2> 启动 ./dist/server/entry.mjs 即可在 3000 端口开放一个服务。
若外部访问 3000 不通,请检查云服务商是否有端口白名单机制。
―
Reply to this email directly, view it on GitHub<#254 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AKBBYQDJEK2GTRY4WFG3MVLW42PG3ANCNFSM6AAAAAAVZ3RSLQ>.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
-
请问我使用node执行entry.mjs后为什么前端会出现请求api/generate/ 500的错误呢 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
不建议在正式使用的场合使用
dev
命令,这应该仅在开发阶段使用,不适合用来长时间运行。要稳定部署,可以使用
build
命令打包 (#183):要实现自动重启,可使用 pm2 等工具运行
./dist/server/entry.mjs
。