1.

Explain the django project directory structure?

Answer»
  • manage.py - A command-line utility that allows you to interact with your Django project
  • __init__.py - An empty file that tells Python that the current directory should be considered as a Python package
  • settings.py - COMPRISES the configurations of the current project LIKE DB connections.
  • urls.py - All the URLs of the project are present here
  • wsgi.py - This is an entry POINT for your application which is used by the web servers to SERVE the project you have CREATED.


Discussion

No Comment Found