From 60cd6e2f727236ba88c0765b1b8140d1613a6ec1 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Sat, 19 Dec 2020 17:37:57 +0100 Subject: [PATCH] import ecosystem.config.js --- ecosystem.config.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..32836a7 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,11 @@ +module.exports = { + apps: [ + { + name: 'artsite', + exec_mode: 'cluster', + instances: 'max', // Or a number of instances + script: './node_modules/.bin/nuxt-ts', + args: 'start' + } + ] +}