- Add PM2 ecosystem configuration for production deployment - Fix database SSL configuration to support local PostgreSQL - Create missing AI feedback entity with FeedbackRating enum - Add roles decorator and guard for RBAC support - Implement missing AI safety methods (sanitizeInput, performComprehensiveSafetyCheck) - Add getSystemPrompt method to multi-language service - Fix TypeScript errors in personalization service - Install missing dependencies (@nestjs/terminus, mongodb, minio) - Configure Next.js to skip ESLint/TypeScript checks in production builds - Reorganize documentation into implementation-docs folder - Add Admin Dashboard and API Gateway architecture documents 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'maternal-backend',
|
|
cwd: './maternal-app/maternal-app-backend',
|
|
script: 'dist/main.js',
|
|
instances: 1,
|
|
exec_mode: 'cluster',
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '1G',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3020,
|
|
},
|
|
env_production: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3020,
|
|
},
|
|
error_file: './logs/backend-error.log',
|
|
out_file: './logs/backend-out.log',
|
|
log_file: './logs/backend-combined.log',
|
|
time: true,
|
|
merge_logs: true,
|
|
},
|
|
{
|
|
name: 'maternal-frontend',
|
|
cwd: './maternal-web',
|
|
script: 'node_modules/next/dist/bin/next',
|
|
args: 'start',
|
|
instances: 1,
|
|
exec_mode: 'cluster',
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '1G',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3000,
|
|
},
|
|
env_production: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3000,
|
|
},
|
|
error_file: './logs/frontend-error.log',
|
|
out_file: './logs/frontend-out.log',
|
|
log_file: './logs/frontend-combined.log',
|
|
time: true,
|
|
merge_logs: true,
|
|
},
|
|
],
|
|
};
|