Max
Max

Reputation: 21

what is difference b/w django-admin startapp vs python manage.py startapp?

  1. both does the same job creating the app in projects
  2. what the different between these two in Django?

Upvotes: 1

Views: 748

Answers (1)

luismontanaresm
luismontanaresm

Reputation: 54

There is no difference in the behaviour. django-admin comes from your installed packages while manage.py will be called from your application.

Upvotes: 2

Related Questions