From e22c50ff1ab608800211ff6405afeed33476ea83 Mon Sep 17 00:00:00 2001 From: sijinhui Date: Thu, 26 Sep 2024 10:07:26 +0800 Subject: [PATCH] enable pm2 start --- ecosystem.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 000000000..c5b7b6698 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,10 @@ +module.exports = { + apps : [{ + name : "chat", + script : "yarn", + args : "start", + env : { + PORT : 23000 + } + }] +}