autobaan/ecosystem.config.js
Collin Duncan 14ba6363ee
Some checks failed
ci/woodpecker/push/test Pipeline failed
tmp
2025-04-28 17:09:24 +02:00

19 lines
337 B
JavaScript

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