Initial commit: Meshkee CMS API

NestJS backend with Prisma, Docker Compose for Postgres/Redis, and deploy docs for the production VM.
This commit is contained in:
Ali Reza
2026-07-21 17:52:36 +03:30
commit bb59d5e9ba
254 changed files with 37031 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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,
},
],
};