= CookBook - Scripts = Scripts that are handy for Django development and administration: [wiki:CookBookScriptsMiniFlush MiniFlush] - a script to re-initialise your Django site and applications [wiki:CookBookScriptsDjget djget] - a bash script to fetch a file from the Django website clean_django -- a one liner that is useful when updating versions {{{ find django_src/ -type f -name "*.pyc" -print0 | xargs -0 rm }}} [wiki:CookBookScriptsAliases aliases] - convenience shell aliases and environment variables [wiki:CookBookScriptsNoSuperUserSyncdb No Superuser syncdb] - how to programmatically call {{{ manage.py syncdb }}} and prevent it from prompting you to create a django superuser. [wiki:ScaffoldScript Scaffold Script] - Spews out simple form templates for a given model