Re: How to: Django development and debugging

2016-10-25 Thread Luis Zárate
2016-10-23 17:08 GMT-06:00 Don Thilaka Jayamanne : > @Luis Zárate > >I dislike VS as IDE but > Please remember, this is Visual Studio Code (cross platform, open source, > free) and not to be confused with Visual Sutdio IDE (full blown IDE runs > only on Windows) > Visual

Re: How to: Django development and debugging

2016-10-23 Thread Don Thilaka Jayamanne
Hi , This Python Extension too supports the features you have mentioned. The difference is: - Visual Studio Code is more of a lightweight and cross platform alternative (completely open source - MIT licensed). Here are

Re: How to: Django development and debugging

2016-10-23 Thread Don Thilaka Jayamanne
@Luis Zárate >I dislike VS as IDE but Please remember, this is Visual Studio Code (cross platform, open source, free) and not to be confused with Visual Sutdio IDE (full blown IDE runs only on Windows) Visual Studio Code >great if you want to support Django

Re: How to: Django development and debugging

2016-10-23 Thread Don Thilaka Jayamanne
@Derek, yes VS Code Editor is available on Linux platforms. Have a look here: https://code.visualstudio.com/Download On Monday, 24 October 2016 00:20:26 UTC+11, Derek wrote: > > Is VS Code Editor available on Linux platforms? > > On Friday, 21 October 2016 02:30:45 UTC+2, Don Thilaka Jayamanne

Re: How to: Django development and debugging

2016-10-23 Thread Don Thilaka Jayamanne
@Luis Zárate >I dislike VS as IDE but Any particular reason for this? >great if you want to support Django there Django is supported today (including template debugging). Right now i'm looking at the need for debugging with auto-reload. On Mon, Oct 24, 2016 at 3:38 AM, Luis Zárate

Re: How to: Django development and debugging

2016-10-23 Thread Don Thilaka Jayamanne
@Derek, yes VS Code Editor is available on Linux platforms. Have a look here: https://code.visualstudio.com/Download On Mon, Oct 24, 2016 at 12:20 AM, Derek wrote: > Is VS Code Editor available on Linux platforms? > > On Friday, 21 October 2016 02:30:45 UTC+2, Don Thilaka

Re: How to: Django development and debugging

2016-10-23 Thread Luis Zárate
I rarelly debug code with django, with external utility, just trace stack when errors appears, buy when I need it I use pydev over Aptana, it has heap monitor, breakpoints, step by step run and other debugger functions. One important thing is that I need to say to pydev that run django with

Re: How to: Django development and debugging

2016-10-23 Thread Derek
Is VS Code Editor available on Linux platforms? On Friday, 21 October 2016 02:30:45 UTC+2, Don Thilaka Jayamanne wrote: > > Hi Everyone, I'm the author of a Python plugin for the VS Code editor ( > https://github.com/DonJayamanne/pythonVSCode). Basically it provides > intellisense, code

Re: How to: Django development and debugging

2016-10-23 Thread Don Thilaka Jayamanne
The debugger in python extension for VS Code is comparable to PyCharms debugger. In fact it supports all of the features you have mentioned. Please feel free to try it out: - https://marketplace.visualstudio.com/items?itemName=donjayamanne.python -

Re: How to: Django development and debugging

2016-10-22 Thread Mike Dewhirst
On Thursday, October 20, 2016 at 8:30:45 PM UTC-4, Don Thilaka Jayamanne wrote: Hi Everyone, I'm the author of a Python plugin for the VS Code editor (https://github.com/DonJayamanne/pythonVSCode ). Basically it provides

Re: How to: Django development and debugging

2016-10-21 Thread Muizudeen Kusimo
Hello Folks, PyCharm makes debugging Django (and other Python) applications very easy. Some of the features which are very helpful include: 1. Ability to choose specific Python Interpreter you want to run the code base against. Useful if you use virtualenv and need to test your code

Re: How to: Django development and debugging

2016-10-20 Thread Antonis Christofides
> - Very rarely would they debug an application > - i.e. majority of the time they don't launch the application in debug mode By "debug mode" I guess you mean stepping into the code, stopping at breakpoints, etc. I wouldn't say I do it rarely, I do it quite often. I add "import ipdb;

How to: Django development and debugging

2016-10-20 Thread Don Thilaka Jayamanne
Hi Everyone, I'm the author of a Python plugin for the VS Code editor (https://github.com/DonJayamanne/pythonVSCode). Basically it provides intellisense, code navigation, debugging (django, multi threads, etc), data science and the like. When it comes to debugging django applications, today