enable pm2 start

This commit is contained in:
sijinhui 2024-09-26 10:07:26 +08:00
parent 8c4ee10281
commit e22c50ff1a

10
ecosystem.config.js Normal file
View File

@ -0,0 +1,10 @@
module.exports = {
apps : [{
name : "chat",
script : "yarn",
args : "start",
env : {
PORT : 23000
}
}]
}