Add pm2 configuration file

This commit is contained in:
Elnu 2022-08-18 00:07:45 -07:00
parent be9ba5e2f3
commit 2c6551d19d

7
ecosystem.config.js Normal file
View file

@ -0,0 +1,7 @@
module.exports = {
apps: [{
name: "image-api",
script: "./index.js",
args: "5001"
}]
};