Create a Django application in a project
Available only in PyCharm Professional: download to try or compare editions
To add a new site to your existing Django project, use the startapp
task of manage.py utility.
Go to Tools | Run manage.py task
In the Django Console dialog, type
startapp
.Note suggestion list that appears under the dialog after entering the first letter, and shrinks as you type to show the exact match only.
Type the name of the new Django application.
Inspect the project structure. You should see the directory and the dedicated file created for the newly registered application.
Thanks for your feedback!
Was this page helpful?