Django on the cheap
Story on how to setup Django as cheaply as possible. NB: Still work in progress. This story will show how to create a Django application and deploy it to a hosting provider as cheaply as I could...
Story on how to setup Django as cheaply as possible. NB: Still work in progress. This story will show how to create a Django application and deploy it to a hosting provider as cheaply as I could...
Story on how to use Wiremock to run CI on Github with Github Actions This story setup a basic Django project using Docker and Docker Compose and then use Wiremock to run tests against a stubbed...
Story on how to use Docker and Docker Compose and deploy a Django app to Heroku This story setup a basic Django project using Docker and Docker Compose and then deploy said application to Heroku....
Tutorial on how to use logging with Django. Prerequisites I'm working on an Ubuntu 20.04, Django 3.1.1 and django-extensions 3.0.9 for good measure. This will not be a complete from zero to hero...
Story on how to use Sqlite as a database when deploying Django with Zappa Prerequisites I'm working on an Ubuntu 20.04, Django 3.1.1 and zappa 0.5.2 and django-extensions 3.0.9 for good measure....
Tutorial on how to use form validation in Django This story will show how to use form validation in Django. Prerequisites I'm working on an Ubuntu 20.04, Django 3.1.1 and django-extensions 3.0.9...
Tutorial on how to use forms in Django This story will show how to use forms in Django. Prerequisites I'm working on an Ubuntu 20.04, Django 3.1.1 and django-extensions 3.0.9 for good measure....
Setup Django with django-tenancy (semi-isolated) This story will show how to install setup Django to work with multiple clients, like a real SAAS. Prerequisites I'm working on an Ubuntu 20.04,...
How to setup Django and Celery with Docker and docker-compose This story sets up Django and adds Celery support to a docker-compose setup. I have updated this on 22 May, 2022 to use the newest...
How to setup Django with Docker and docker-compose In this story I'll show how to setup a simple django application to use docker and docker-compose. Install a base django project First we need to...
How does Django's select_related works and when should you use it? What problem does it solve? Django's select_related() solves the problem when you want to access related fields on a queryset....