I have an IDE PyCharm for editing a Django application I am working on now. It has no FTP access and I work with a local copy of my application. Then I have to upload changed files to my production server over FTP. So, is that possible to automatically send updated files as they are changed? May be there are some utilities to make it?

UPD: I have created a webdav folder on my hosting and I have attached it as a network place in Windows XP. So, I see files in explorer inside the folder. Now I need to map this location as a drive. When I try to do this, I see the button OK becomes inactive so it won't let me know to add it or its inner folders as a drive.

alt text

link|improve this question

67% accept rate
feedback

3 Answers

you can use "allwaysync" (free utility for windows) to sync folders http://allwaysync.com/download.html it can sync both locations, or you can select one as a source and one as a destination can propagate and move modified / deleted files to user specified folders

very good and light weight - can be scheduled via task scheduler or windows batch.

link|improve this answer
feedback

If you want to directly edit the files on the production server then you can mount the relevant folders as a network drive via the windows explorer.

If you want to edit locally and upload all changes when you're done you could use rsync.

link|improve this answer
feedback

PyCharm supports deploying files to FTP servers, and can do it automatically when files change or when you build:

http://www.jetbrains.com/pycharm/webhelp/remote-hosts.html

http://www.jetbrains.com/pycharm/webhelp/uploading-and-downloading-files.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.