Dimitri Aatos Ellinas

Results 14 comments of Dimitri Aatos Ellinas

The port is typically specified as an environment variable. Try the following `ecosystem.config.js` ```javascript module.exports = { apps: [{ name: "app", script: "./app.js", env_staging: { NODE_ENV: "staging", PORT: 3030, },...

I think you're looking for `pm2 attach ` The only docs I was able to find about this command is by running `pm2 --help` which logs among other ``` attach...

> When I was using python scripts written by others, I found that python and terminal interaction could be abbreviated as such python3 main.py --action (1/2) Writing in this way,...