mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 22:04:10 +00:00
- Update payload.config.ts with new collections, blocks, and globals - Configure i18n with DE/EN localization support - Add multi-tenant plugin configuration - Update ecosystem.config.cjs for PM2 - Regenerate payload-types.ts and importMap.js - Add prettier configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
466 B
JavaScript
22 lines
466 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'payload',
|
|
cwd: '/home/payload/payload-cms',
|
|
script: 'pnpm',
|
|
args: 'start',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3000
|
|
},
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '1G',
|
|
error_file: '/home/payload/logs/error.log',
|
|
out_file: '/home/payload/logs/out.log',
|
|
time: true,
|
|
max_restarts: 10,
|
|
min_uptime: '10s',
|
|
restart_delay: 5000
|
|
}]
|
|
}
|