We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pm2 pull not working if starter-script and executable file not in the same dirs
pm2 pull
Dirs and files: /home/start.json /home/dir/.git /home/dir/app.py
TestCaseOne: cat start.json
{ "name": "app_name", "script": "dir/app.py", "exec_interpreter": "python3.6" }
TestCaseTwo: cat start.json
{ "name": "app_name", "script": "app.py", "cwd": "./dir", "exec_interpreter": "python3.6" }
Let's run: pm2 start start.json pm2 pull app_name
pm2 start start.json
pm2 pull app_name
TestCaseOne: pull successful TestCaseTwo: there's no .git
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What's going wrong?
pm2 pull
not working if starter-script and executable file not in the same dirsHow to reproduce this issue?
Dirs and files:
/home/start.json
/home/dir/.git
/home/dir/app.py
TestCaseOne:
cat start.json
TestCaseTwo:
cat start.json
Let's run:
pm2 start start.json
pm2 pull app_name
TestCaseOne: pull successful
TestCaseTwo: there's no .git
The text was updated successfully, but these errors were encountered: