ecosystem

This commit is contained in:
tumble 2023-02-26 22:52:00 +00:00
parent ee19f1bcf5
commit 76b4691259
1 changed files with 10 additions and 13 deletions

View File

@ -1,15 +1,12 @@
module.exports = {
apps: []
apps: [{
name: "point-collecting",
script: 'npm',
args: 'start',
//interpreter: '/bin/bash',
env: {
NODE_ENV: "production",
PORT: 4001,
}
}]
};
module.exports.apps.push({
name: "point-collecting",
script: 'npm',
args: 'start',
//interpreter: '/bin/bash',
env: {
NODE_ENV: "production",
PORT: 4001,
}
});