-
Notifications
You must be signed in to change notification settings - Fork 1
Backend
Lahiru de Alwis edited this page Mar 24, 2022
·
6 revisions
Only follow official documentation and additional resources listed below. If you don't understand anything in the docs ask from your immediate supervisor
- Install Python 3: Install Python 3 on Linux | Install Python 3 on WIndows 10
- Setup Django: Django Quick Installation Guide
- Setup DB(PostgreSQL) and connect with the backend
- Explore Django admin
- Go through the Tutorial (section 1,2,3) and Implement the exerceise(Polls app): Start here
- Make sure to cover the following areas in your exercise.
a. You should be able to view the database, tables and data. Understand Django ORM maps models into tables in the database. Revise the ORM concepts if you've forgotten them.
b. Understand the cycle of a request from the client to server them back to the client. Think about a single request and see how it goes through the implementation of your application.
c. Make sure that you understand each line of your code. (Code that you wrote) - Discuss the learning outcomes with your supervisor. Get clarifications on the things that you didn't quite understand.
[wip]