Posts

Part 3: Deploy Django using Nginx and Gunicorn/uWSGI - Automation with Fabric

In part 1 of this series, we setup a Django server using uWSGI/Gunicorn and Nginx. In that part, all the steps of dependencies installation and configurations are performed one by on...

Part 2: Deploy Django using Nginx and Gunicorn/uWSGI - Celery Worker and Beat Setup

In Part 1, we setup a Django server using uWSGI/Gunicorn and Nginx. This server only contain one service which is our application server. But sometimes, our server can have more than...

Part 1: Deploy Django using Nginx and Gunicorn/uWSGI - Basic Setup

Django is a python based framework that was developed to help developer to take applications from idea to fulfillment as fast as could reasonably be expected. Django incorporates a s...

Understanding Context Managers in Python

Python context managers provides a way to perform some pre processing and post processing related to your cast. This processing can be allocation and releasing of some kind of resour...

Creating Custom Django Filters in Django

In django’s template framework, there is a wide variety of implicit filters which you can use for different purposes in your application. Filters are functions which control any inpu...