> Per Wagner Nielsen's Blog · /tags/django/ utf-8
READY.

Per Wagner Nielsen.dk

#django
11 posts
├──────────────────── #django ──────────────────────────────────────────────────────────────────────┤
────────────────────────────────────────────────────────────────────────────────────────────

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...

read more →
────────────────────────────────────────────────────────────────────────────────────────────

Wiremock on Github with Github Actions

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...

read more →
────────────────────────────────────────────────────────────────────────────────────────────

Deploy Django to Heroku using Docker

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....

read more →
────────────────────────────────────────────────────────────────────────────────────────────

Django logging

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...

read more →
────────────────────────────────────────────────────────────────────────────────────────────

Using Sqlite with django and zappa

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....

read more →
────────────────────────────────────────────────────────────────────────────────────────────

Django Forms 2 Validation

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...

read more →
────────────────────────────────────────────────────────────────────────────────────────────

Django Forms 1

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....

read more →
────────────────────────────────────────────────────────────────────────────────────────────

Setup django with multitenancy (semi-isolated)

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,...

read more →
────────────────────────────────────────────────────────────────────────────────────────────

Docker, Docker Compose and Django with Celery

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...

read more →
────────────────────────────────────────────────────────────────────────────────────────────

Docker, Docker Compose and Django

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...

read more →
────────────────────────────────────────────────────────────────────────────────────────────

Django's select_related

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....

read more →