fdgt-apis/api

View on GitHub
ecosystem.config.js

Summary

Maintainability
A
0 mins
Test Coverage
const packageData = require('./package.json')

const repo = packageData.repository.url

module.exports = {
    deploy: {
        production: {
            host: [process.env.DEPLOY_HOST],
            path: '/var/www/fdgt',
            'post-deploy': 'source ~/.zshrc; yarn install; yarn build;',
            ref: 'origin/main',
            repo,
            user: 'deploy',
        },
    },
}