autobaan/ecosystem.config.js
Collin Duncan 93bcc887b9
All checks were successful
ci/woodpecker/push/test Pipeline was successful
updating pm2 ecosystem config
2025-04-28 13:54:37 +02:00

19 lines
325 B
JavaScript

module.exports = {
apps: [
{
name: 'autobaan',
script: 'npm',
args: 'run start',
},
],
deploy: {
production: {
user: 'root',
host: ['autobaan'],
ref: 'origin/main',
repo: 'https://fred.collinduncan.com/collin/autobaan.git',
path: '/root/autobaan',
'post-deploy': 'npm install',
},
},
}