0 votes
in Data Handling by
What is the significance of manage.py file in Django?

1 Answer

0 votes
by

The manage.py file is automatically generated whenever you create a project. This is basically a command-line utility that helps you to interact with your Django project in various ways. It does the same things as django-admin but along with that, it also sets the DJANGO_SETTINGS_MODULE environment variable in order to point to your project’s settings. Usually, it is better to make use of manage.py rather than the django-admin in case you are working on a single project.

Related questions

0 votes
asked Jun 29, 2020 in Python by Robindeniel
+1 vote
asked Apr 4, 2020 in Data Handling by amita rallin
...