Django Periodic Task using Celery and RabbitMQ | Part 2

Posted on Feb 11, 2018

Sometimes, we need to execute tasks to run at a specific time every so often - i.e., getting data from an API at regular interval. Celery can be used for running these types of periodic tasks too.

Django Asynchronous Task using Celery and RabbitMQ | Part 1

Posted on Jan 27, 2018

Celery is a powerful asynchronous task/job queue based on distributed message passing which is written in Python. It is used for running tasks in the background for both real-time operations as well as scheduled tasks.

Create Static Sites using Jekyll

Posted on Jan 21, 2018

Jekyll is a simple, blog-aware, static site generator. Instead of using databases, Jekyll takes the content, renders markdown or textile and liquid templates, and produces a complete, static website ready to be served by apache HTTP server, nginx or another web server.

Django + Gunicorn + Supervisor + Nginx

Posted on Jan 20, 2018

As a beginner, I found it quite hard to deploy a Django project in the production environment. After several tries, finally, I got it all together. In this post, I am going to show you how to deploy Django 2.

Install Odoo 9 on Ubuntu 16.04

Posted on Dec 18, 2017

Odoo is a suite of open source business apps that offers CRM, eCommerce, billing, accounting, inventory, point of sale, project management, manufacturing, warehouse etc. For beginners, installation of Odoo may seem quite hard.