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?
Asked
Active
Viewed 5,292 times
7
-
I am facing the same issue, if I am creating an app using python manage.py startapp
, django is detecting the changes in models, but if I create the same app using django-admin startapp – code_10 Dec 30 '22 at 06:59Django is not detecting the changes in models and displays no changes detected, can anyone shed some light on it?
1 Answers
1
There is no difference. manage.py
is meant for the project and comes preconfigured with project-settings.

Andreas Neumeier
- 338
- 2
- 10