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

django, pycharm, python

Solution

Yes you can.

- In Run -> Edit Configurations create new configuration

- [+] / Python

- Name: runserver

- Scrip Path: path_to/manage.py

- Parameters: runserver

Problem

Community Edition of the PyCharm is lacking the project type option on project setup and then when I set up Debug or Run configurations it asks me for a script it should run. What script would it be for Django, `manage.py`?

Original source