stock.geolock.fr/ecosystem.config.cjs
2026-02-24 16:10:30 +00:00

36 lines
741 B
JavaScript

module.exports = {
apps: [
{
name: 'localiztoi-api',
cwd: './apps/api',
script: 'dist/index.js',
interpreter: 'node',
interpreter_args: '--env-file=.env',
exec_mode: 'fork',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '512M',
env: {
NODE_ENV: 'production',
PORT: 4000
}
},
{
name: 'localiztoi-web',
cwd: './apps/web',
script: 'node_modules/next/dist/bin/next',
args: 'start -p 3100',
exec_mode: 'fork',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '512M',
env: {
NODE_ENV: 'production',
PORT: 3100
}
}
]
}