web Articles




  • Fri 08 May 2020
  • web

Django on a production server

Is your Django project ready for production? Follow this guide to bring your Django project on a production server. Quick and easy!

  • Mon 20 April 2020
  • web

Remote debugging a Django project in VS Code

In this tutorial you will learn how to use VS Code for remote debugging. I'll show you how to debug a Django application running on a remote SSH server or in a Docker container.

  • Fri 27 March 2020
  • web

Optimize Django memory usage

Sometimes the Django ORM can use a lot of RAM when dealing with very large querysets. Follow these simple methods to optimize Django memory usage.


  • Thu 21 November 2019
  • web

Django asynchronous tasks without Celery

Do you want to perform a long running task in your Django web app without using Celery? Follow this simple guide to implement Django asynchronous tasks.