I have already configured my configuration so that it remotely starts the server. When I click run, I see the command used:
ssh://vagrant@localhost:2222/usr/bin/python -u "C:/Users/MyName/ProjectName/config/manage.py" runserver localhost:8080
(I replaced the directory names for anonymity).
When I run this, it fails (obviously) because it uses the path to my manage.py file In particular, I get an error
`/usr/bin/python: can't open file 'C:/Users/MyName/judgeapps/config/manage.py': [Errno 2] No such file or directory
What I can’t understand after an extensive Google search is how to get the django to use the path on my vagrant machine. How can i do this?
source
share