Files
backend/ecosystem.config.js
Ali Reza bb59d5e9ba Initial commit: Meshkee CMS API
NestJS backend with Prisma, Docker Compose for Postgres/Redis, and deploy docs for the production VM.
2026-07-21 17:52:36 +03:30

17 lines
280 B
JavaScript

module.exports = {
apps: [
{
name: 'meshkee-api',
script: 'dist/main.js',
cwd: __dirname,
instances: 1,
exec_mode: 'fork',
env: {
NODE_ENV: 'production',
},
max_memory_restart: '512M',
time: true,
},
],
};