This document provides recommendations for next steps after completing the Django tutorial. It discusses setting up a Django project including base templates, context processors, render shortcuts, and middleware. It recommends writing models and using fixtures, migrations, and South for database management. The document also suggests using signals for decoupling code, named URLs, and class-based views. It advises avoiding generic views, complicated templates, and some contrib apps. Finally, it lists debugging tools like pdb, IPython, ipdb, the Django Debug Toolbar, and command extensions.
1 of 67
Downloaded 30 times
More Related Content
You've done the Django Tutorial, what next?
1. You¨ve done the Django tutorial.
What next?
Andy McKay
Clearwind Consulting
@clearwind
31. 1. create app within project
2. de?ne models
3. access admin
4. smoke test models
5. alter, run ^reset ̄
6. access admin (back to 4 until happy)
7. enter sample data
8. dump data to ?xtures
9. add ?xture loading to ^reset ̄
10. continue... write tests and retail view