mirror of
https://git.meshkee.com/Meshkee/backend.git
synced 2026-08-11 22:30:59 +04:30
NestJS backend with Prisma, Docker Compose for Postgres/Redis, and deploy docs for the production VM.
17 lines
280 B
JavaScript
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,
|
|
},
|
|
],
|
|
};
|