Files
backend/pm2.config.cjs
2025-10-26 14:21:18 -04:00

10 lines
274 B
JavaScript
Executable File

module.exports = {
name: "Selenite", // Name of your application
script: "start.cjs", // Entry point of your application
interpreter: "bun", // Path to the Bun interpreter
watch: true,
cron_restart: '0 0 * * *',
instances : "max",
exec_mode : "cluster"
};