Categories
django

Django Moderation and Workflow Tools Reviewed

I have a requirement where entries created by users needs to be approved or rejected. Now this seems to be a common trait you can add to a model and something that needn’t be custom developed, a good use case for django behaviours I digged a bit deeper and found that there are generic workflow […]

Categories
django

Sending Emails Asynchronously with Django-Celery-Email and RabbitMQ

Update 2022: I think using celery directly as opposed to having djcelery abstract the implementation away is better. Check the celery docs then look at how to implement celery with django I am using django-registration-redux to register and activate users on my website. It sends emails to users to activate and reset their passwords. Unfortunately […]

Categories
django python Web Development

Deploying a django website to a Ubuntu 16.04 server with python3.6, gunicorn, nginx and Mysql

Getting up and running on your local development setup and being able to build and see the changes you are making is one of the numerous reasons we like django. The built in development webserver helps a lot in this regard. As soon as we have to deploy the site on a server and make […]