Open sjordan1975 opened 5 years ago
Attempting to use the Vue Grove Build, running the following from within project directory
pm2 start ecosystem.config.js --env=production
Throws error
[PM2][ERROR] script not found : /vagrant/sample-project/middle-tier/middle-tier/node-app.js
Fixed with the following
// in ecosystem.config.js file module.exports = { apps: [ { name: "@grove-app-name", script: "node-app.js", cwd: "./middle-tier/", watch: true, restart_delay: 4000, env: { NODE_ENV: "development" }, env_production: { NODE_ENV: "production", GROVE_UI_BUILD_PATH: "../ui/dist/" } } ], deploy: {} };
Yes thanks. I think I have it pending in local commits. Good reminding to check that..
Attempting to use the Vue Grove Build, running the following from within project directory
Throws error
Fixed with the following