const path = require('path'); module.exports = { apps: [{ name: 'floter-design', script: path.join(__dirname, 'build/index.js'), cwd: __dirname, instances: 1, exec_mode: 'fork', env: { NODE_ENV: 'production', PORT: 3001, HOST: '0.0.0.0' }, error_file: path.join(__dirname, 'logs/err.log'), out_file: path.join(__dirname, 'logs/out.log'), log_date_format: 'YYYY-MM-DD HH:mm:ss Z', merge_logs: true, autorestart: true, watch: false, max_memory_restart: '1G' }] };