Initial commit apps directory with .gitignore

This commit is contained in:
2026-02-22 15:15:41 +08:00
commit 0aa8cdd72c
228 changed files with 69672 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
module.exports = {
apps: [
{
name: 'e-proposal-komite-api',
cwd: './server',
script: 'src/index.js',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '500M',
env: {
NODE_ENV: 'production'
}
},
{
name: 'e-proposal-komite-web',
cwd: './',
script: 'server.js',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '200M',
env: {
NODE_ENV: 'production',
PORT: 3008
}
}
]
};