Reputation: 1144
I have the remote server with a few virtualenv environments (django projects). How can I open, develop and debug these projects completely remote?
Shall I mount remote directory via sshfs to open a project? (I can't open project other way than as local path) I am working on debian and windows xp.
Upvotes: 18
Views: 15326
Reputation: 1144
I've found the decision and asked the support which confirmed its:
Here is the steps:
The remote interpreter is the virtualenv interpreter with all packages are installed.
Debug also works, we can debug completely remote project on server using local pycharm.
Upvotes: 25
Reputation: 2836
Debian:
From the file manager, click on Connect To server
, connect to ssh by giving login credentials which will open your remote project on your file manager itself.
Or you can go to the server using ssh
via terminal and edit your project via command line text editor.
IDE:
If you are working with IDE such as Aptana or PyCharm, you can load the project from the server itself by login credentials.
Upvotes: -1