18 lines
365 B
JavaScript
18 lines
365 B
JavaScript
|
|
|
||
|
|
module.exports = {
|
||
|
|
apps: [{
|
||
|
|
name: "ticket-machine",
|
||
|
|
script: "./scripts/pm2-start.js",
|
||
|
|
instances: 1,
|
||
|
|
autorestart: true,
|
||
|
|
watch: false,
|
||
|
|
max_memory_restart: '1G',
|
||
|
|
env: {
|
||
|
|
NODE_ENV: 'production',
|
||
|
|
PORT: 22222,
|
||
|
|
DEEPSEEK_API_KEY: 'sk-1f7e7d66683a4960ab6259e1e9afed2e',
|
||
|
|
DEEPSEEK_MODEL: 'deepseek-v4-flash'
|
||
|
|
}
|
||
|
|
}]
|
||
|
|
};
|