How to run Debug server for Django project in PyCharm Community Edition? How to run Debug server for Django project in PyCharm Community Edition? python python

How to run Debug server for Django project in PyCharm Community Edition?


Yes you can.

  1. In Run -> Edit Configurations create new configuration
  2. [+] / Python
  3. Name: runserver
  4. Scrip Path: path_to/manage.py
  5. Parameters: runserver


enter image description here

this is a configuration for run/debug django in pycharm.