mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 07:39:02 +02:00
10 lines
216 B
CoffeeScript
10 lines
216 B
CoffeeScript
recluster = require "recluster" # https://github.com/doxout/recluster
|
|
path = require "path"
|
|
|
|
cluster = recluster path.join(__dirname, 'app.js'), {
|
|
workers: 2,
|
|
backoff: 0,
|
|
readyWhen: "listening"
|
|
}
|
|
cluster.run()
|