同步数据

This commit is contained in:
乘风
2026-02-02 18:27:48 +08:00
parent 46b052d6b4
commit 2aad5d55fd
26 changed files with 781 additions and 220 deletions

View File

@@ -1,7 +1,7 @@
/**
* PM2 配置:用于 standalone 部署的服务器
* 启动方式node server.js不要用 npm start / next startstandalone 无 next 命令)
* 使用pm2 start ecosystem.config.cjs 或 PORT=3006 pm2 start server.js --name soul
* 使用pm2 start ecosystem.config.cjs 或 PORT=30006 pm2 start server.js --name soul
*/
module.exports = {
apps: [
@@ -11,7 +11,7 @@ module.exports = {
interpreter: 'node',
env: {
NODE_ENV: 'production',
PORT: 3006,
PORT: 30006,
},
cwd: undefined, // 以当前目录为准,部署时在 /www/wwwroot/soul
},