初始提交

This commit is contained in:
2026-06-21 10:00:13 +08:00
commit 7a5dc32672
1441 changed files with 266348 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
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'
}
}]
};