Notes

Django - under construction


    Django File Downloads

    Mr. Kent - April 23, 2024

    This process shows how to implement file downloads from a views.py file, using the FileResponse function built into the django.http module.

    Add a Sitemap to Django

    Mr. Kent - April 12, 2024

    A sitemap is a .xml file that provides structered data to help search engines gain context about your website by understanding the layout of the pages in the site.

    Django Project Setup (development environment)

    Mr. Kent - May 11, 2024

    These steps will setup Django inside containers. We will end up with a local environment that houses two docker containers, the Django web framework and a Postgres database. Both reside in a docker compose network.



    Back