Django - What you need to know
To create a web application with Django you need to know or aware of the following (to create and use):
1.Creating Django Project (including the files inside the project folder)
1.1. Using "manage.py" for various project / app level actions
2. Creating Django App
3. Views
4. Models
5. Templates
6. Routing
7. URLs
8. Serializers
9. Django Admin (need to setup database)
10. Migrations (making and applying)
11. Running Development Server
12. Object Relational Mapping (ORM)
13. QuerySet
14. ModelForm
15. Meta Classes
16. Static files (css, javascript, images, other assets)
17. Django Authentication System
18. Sessions and Cookies management
Comments
Post a Comment