Hi Viktor, I actually don't use a debugger with Sublime. Debugging python is not like debugging .NET for example (VS is really great in that respect). To debug I use ipdb a python module. To use, simply import ipdb (https://pypi.python.org/pypi/ipdb) into the module that you want to debug and then I put a "ipdb.set_trace()" command where I want to set a breakpoint. Here's a list of commands you can use with ipdb : https://docs.python.org/2/library/pdb.html#debugger-commands Hope that helps! Cheers, Alexei
Director of Web Development - Farallon Geographics, Inc. - 971.227.3173 On Tue, May 16, 2017 at 12:34 PM, Viktor_Getty <[email protected]> wrote: > Hi Alexei, > > I installed Sublime Text 3 and was able to customize it to my needs. > However I found it does not include a debugger. What debugger do you use > with this text editor? > > Thank you, > Viktor > > > On Thursday, May 11, 2017 at 10:04:13 AM UTC-7, Alexei Peters wrote: > >> Hi Vincent, >> I personally use Sublime Text (https://www.sublimetext.com/) and there >> are others in our office that use Atom (https://atom.io/). >> I don't use any kind of automatic linter, but sublime as well as atom >> both support a rich ecosystem of plugins. A little googing found these ( >> https://github.com/squ1b3r/Djaneiro) and (https://atom.io/packages/djan >> go-atom). There are more. >> Hope that helps, >> Alexei >> >> >> Director of Web Development - Farallon Geographics, Inc. - 971.227.3173 >> <(971)%20227-3173> >> >> On Tue, May 9, 2017 at 10:27 AM, Vincent Meijer <[email protected]> >> wrote: >> >>> I'm curious to learn which IDE people use to develop Arches (core) or >>> their Arches custom app. >>> >>> I currently use Visual Studio Code with the python and Django Template >>> extensions. >>> Although I really like VSC, when developing Django templates I get a lot >>> of false linting errors, as it doesn't seem to understand Django all tags >>> (e.g. tags like {% autoescape off %} in arches/app/templates/base-mana >>> ger.htm). >>> >>> Do other people have more success with Django development? >>> >>> Best, >>> Vincent >>> >>> >>> -- >>> -- To post, send email to [email protected]. To unsubscribe, >>> send email to [email protected]. For more information, >>> visit https://groups.google.com/d/forum/archesproject?hl=en >>> --- >>> You received this message because you are subscribed to the Google >>> Groups "Arches Project" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected]. >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> -- > -- To post, send email to [email protected]. To unsubscribe, > send email to [email protected]. For more > information, visit https://groups.google.com/d/forum/archesproject?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Arches Project" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- -- To post, send email to [email protected]. To unsubscribe, send email to [email protected]. For more information, visit https://groups.google.com/d/forum/archesproject?hl=en --- You received this message because you are subscribed to the Google Groups "Arches Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
