1 Star 1 Fork 1

sumu/flygoose-blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pm2.config.js 1.58 KB
一键复制 编辑 原始数据 按行查看 历史
zhanghongjun 提交于 2024-02-06 17:38 . 添加flygoose博客前台项目
// /* pm2.config.js
// * pm2 start pm2.config.js --only hello-world
// */
// module.exports = {
// apps: [
// {
// name: 'hello-world-test', // 测试环境
// cwd: './', // 当前工作路径
// script: 'npm', // 实际启动脚本
// args: 'run start_test', // 参数
// autorestart: true,
// watch: true, // 监控变化的目录,一旦变化,自动重启
// watch_delay: 10000,
// ignore_watch: ['node_modules', 'static'], // 从监控目录中排除
// watch_options: {
// followSymlinks: false,
// usePolling: true
// }
// },
// {
// name: 'hello-world', // 正式环境
// cwd: './', // 当前工作路径
// script: 'npm', // 实际启动脚本
// args: 'run start', // 参数
// autorestart: true,
// user: 'root',
// instances: 8, // 启动2个服务进程
// exec_mode: 'cluster',
// watch: true, // 监控变化的目录,一旦变化,自动重启
// watch_delay: 4000,
// ignore_watch: ['node_modules', 'static'], // 从监控目录中排除
// watch_options: {
// followSymlinks: false,
// usePolling: true
// }
// },
// {
// name: 'czblog',
// port: '8080',
// exec_mode: 'cluster',
// instances: 'max',
// script: './.output/server/index.mjs'
// }
// ]
// }
module.exports = {
apps: [
{
name: 'czblog',
port: '58081',
exec_mode: 'cluster',
instances: 'max',
instances: 2,
script: './.output/server/index.mjs'
}
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sumu100/flygoose-blog.git
git@gitee.com:sumu100/flygoose-blog.git
sumu100
flygoose-blog
flygoose-blog
main

搜索帮助