Announcing django-constance
Posted on December 2, 2010
django-constance is live settings for Django in Redis featuring a Django admin interface and easy migration from your static Django settings.
Posted on December 2, 2010
django-constance is live settings for Django in Redis featuring a Django admin interface and easy migration from your static Django settings.
Posted on May 5, 2010
Updated on February 20, 2011
There are many ways you can organise your projects in Python. One of them uses virtualenv and pip. They let you work on several projects simultaneously while they keep environments of each project separate. This way, each project can keep its own set of Python dependencies with different packages and different versions of packages.
Much has been written about virtualenv and pip. This guide will help you install virtualenv and pip in Ubuntu in such a way it will be very easy to create new virtualenvs for your projects.
Posted on February 26, 2010
Virtualenv is a tool for isolating Python projects. Such Python projects can have their own set of packages and their versions without affecting each other. This article will tell you how to create and work with such environments and how to use them with your Django projects.
This is a follow-up to the last article on virtualenv and pip.