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?
django-admin startapp v/s python manage.py startapp [duplicate]
Asked Answered
I am facing the same issue, if I am creating an app using python manage.py startapp <app-name> , django is detecting the changes in models, but if I create the same app using django-admin startapp <app-name> Django is not detecting the changes in models and displays no changes detected, can anyone shed some light on it? –
Gentility
There is no difference. manage.py
is meant for the project and comes preconfigured with project-settings.
© 2022 - 2024 — McMap. All rights reserved.