Reputation: 91
What is the difference between django-admin startapp
and python manage.py startapp
? They both create apps and the files are also same so what's the difference between these two?
Upvotes: 8
Views: 5780
Reputation: 326
There is no difference. manage.py
is meant for the project and comes preconfigured with project-settings.
Upvotes: 1