Re: auto generate "dummy" content (e.g. Lorem ipsum generator for Django)

2010-04-25 Thread Leo
Of course, a couple other things to look at that might save you from needing to regenerate the content: Fixtures: http://docs.djangoproject.com/en/dev/howto/initial-data/ South: http://south.aeracode.org/ I just started using south, and it really cleans up the database schema change workflow.

Re: auto generate "dummy" content (e.g. Lorem ipsum generator for Django)

2010-04-23 Thread Skylar Saveland
http://docs.djangoproject.com/en/dev/ref/contrib/webdesign/#ref-contrib-webdesign On Apr 23, 3:41 pm, Brad Buran wrote: > Is there any easy way of generating dummy content for models in Django?  As > I'm learning how to use Django, I often find myself deleting the sqlite >

auto generate "dummy" content (e.g. Lorem ipsum generator for Django)

2010-04-23 Thread Brad Buran
Is there any easy way of generating dummy content for models in Django? As I'm learning how to use Django, I often find myself deleting the sqlite database and running syncdb each time (rather than dealing with the issues of manual schema migration each time I make a change to my models). As