1

In Django, code changes are immediately applied without restart of the web-server. This is really convenient specially to tune look and feel. To get debug support, I started using VS2013 with PTVS extension which support Django for my project. The only issue I face with this setup is after a code change it requires restart of the debug session. Is there a way to avoid this? Before moving to VS2013, I used PyCharm and it allowed me to do this without any issues.

Pavel Minaev
  • 99,783
  • 25
  • 219
  • 289
user3612009
  • 655
  • 1
  • 6
  • 18

1 Answers1

1

I've managed to do it removing --noreload from the script arguments. I hope it helps

F3RD3F
  • 2,309
  • 3
  • 22
  • 26