10 lines
273 B
JavaScript
Executable File
10 lines
273 B
JavaScript
Executable File
module.exports = {
|
|
name: "Selenite", // Name of your application
|
|
script: "index.js", // Entry point of your application
|
|
interpreter: "bun", // Path to the Bun interpreter
|
|
watch: true,
|
|
cron_restart: '0 0 * * *',
|
|
instances : "max",
|
|
exec_mode : "cluster"
|
|
};
|