autobaan/ecosystem.config.js
Collin Duncan 430f73d63b
Some checks failed
ci/woodpecker/push/test Pipeline failed
Testing correct ref and removing old ssh check
2025-04-28 16:30:08 +02:00

19 lines
325 B
JavaScript

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