Skip to content

Latest commit

 

History

History
43 lines (25 loc) · 1.55 KB

ATTRIBUTIONS.md

File metadata and controls

43 lines (25 loc) · 1.55 KB

Attributions

Django Database Migrations

Miscellaneous Django Files

  • Files:

  • Reference (where code comes from)

    • Automatically created by Django when first starting a Django project
  • Reason for inclusion:

    • manage.py manages all the CLI commands Django provides, such as

      • runserver to start the Django server
      • makemigrations to create migration files for the DB model
      • migrate to make the migrations to the DB
      • etc.
    • asgi.py and wsgi.py serve as entry points for ASGI and WSGI servers respectively