2025-05-26 20:48:05 +08:00
|
|
|
const { name } = require('./package.json');
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
apps: [
|
|
|
|
{
|
|
|
|
name,
|
|
|
|
script: path.resolve(__dirname, './dist/index.js'),
|
|
|
|
instances: require('os').cpus().length,
|
|
|
|
autorestart: true,
|
|
|
|
watch: true,
|
|
|
|
env_production: {
|
|
|
|
NODE_ENV: 'production',
|
2025-07-01 15:47:11 +08:00
|
|
|
PORT: 8050,
|
2025-05-26 20:48:05 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|