288b0c25e6
- Update Docker image names and network configurations - Rename package.json project names to picpeak-backend/frontend - Update CI/CD configurations (Drone CI and GitHub Actions) - Update documentation and setup scripts - Update application branding in source code - Change default database name to picpeak - Update PM2 ecosystem config 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
493 B
JavaScript
22 lines
493 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'picpeak',
|
|
script: './server.js',
|
|
instances: 'max',
|
|
exec_mode: 'cluster',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3000
|
|
},
|
|
error_file: './logs/pm2-error.log',
|
|
out_file: './logs/pm2-out.log',
|
|
log_date_format: 'YYYY-MM-DD HH:mm:ss',
|
|
max_memory_restart: '1G',
|
|
watch: false,
|
|
ignore_watch: ['node_modules', 'logs', 'storage'],
|
|
wait_ready: true,
|
|
listen_timeout: 3000,
|
|
kill_timeout: 5000
|
|
}]
|
|
};
|