Loading initial data for your Django app using fixtures and South
I’ve been thinking about deployment for my app these last few days and one of the things I needed to be able to do is automatically load initial data to one of the tables. If you’re already using South (which you should be unless you have a very, very simple project), you can easily include this in a data migration by loading in a fixture.
You can accomplish this in a few simple steps:
1. …