+1 vote
in Python by
What is the use of manage.py?

1 Answer

0 votes
by

It is an automatically built file inside each Django project. It is a flat wrapper encompassing the Django-admin.py. It possesses the following usage:

It establishes your project's package on sys.path.

It fixes the DJANGO_SETTING_MODULE environment variable to point to your project's setting.py file.

Related questions

0 votes
asked Jun 29, 2020 in Python by Robindeniel
0 votes
asked Jul 2, 2020 in Python by GeorgeBell
...