emkorybski
emkorybski

Reputation: 573

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

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?

Upvotes: 46

Views: 31931

Answers (2)

Wria Mohammed
Wria Mohammed

Reputation: 1611

enter image description here

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

Upvotes: 2

Zlatko Rončević
Zlatko Rončević

Reputation: 1525

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

Upvotes: 136

Related Questions