2014-03-05 19:48 GMT-03:00 PK <[email protected]>: > I use symbolic links from the file tree I deploy to my source code to > accommodate generated files, multiple modules etc
If you are trying to debug Python code, I don't see how Pycharm is the problem. Regarding Python code, what I do is setting up a virtualenv on some folder inside the project, setting this on Pycharm so it can autocomplete based on installed libs and I use a symlink to venv's site-packages so GAE SDK can upload the libs on deployment process. You can see all the setup here (it is assumed that virtualenv is installed): https://github.com/renzon/tekton/blob/master/project_template/backend/venv/venv.sh Once the symlink is there, you have to add it to path through Python code, what you can see on line 4: https://github.com/renzon/tekton/blob/master/project_template/backend/src/convention.py With this configuration I have no performance issues. But I know Pycharm itself is very heavy, so depending on you hardware, it can be very slow. I hope it helps you. -- Renzo Nuccitelli www.python.pro.br -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
