7

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?

Irfan Raza
  • 81
  • 1
  • 2
  • 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 Django is not detecting the changes in models and displays no changes detected, can anyone shed some light on it? – code_10 Dec 30 '22 at 06:59

1 Answers1

1

There is no difference. manage.py is meant for the project and comes preconfigured with project-settings.

Andreas Neumeier
  • 338
  • 2
  • 10