feat(M01-A): 建立后端API基础骨架

This commit is contained in:
Codex
2026-06-16 20:37:55 +08:00
parent eb259ce2a4
commit 98b66d22f2
22 changed files with 437 additions and 19 deletions
+16
View File
@@ -0,0 +1,16 @@
module.exports = {
apps: [
{
name: 'qipai-api',
cwd: '/opt/apps/qipai-backend/current/backend',
script: 'dist/server.js',
instances: 1,
exec_mode: 'fork',
env: {
NODE_ENV: 'production',
QIPAI_API_HOST: '127.0.0.1',
QIPAI_API_PORT: '3001'
}
}
]
};