tags:

views:

44

answers:

1

while using groovy with grails i used to use the bootstrap file to add some data such as the primary user of the application or other things that need to be initialised for the first time when the application is started , how do i achive the same in django?

+3  A: 

You want fixtures.

See Providing initial data for models in the Django docs for more information.

Joseph Spiros