#100DaysOfWeb in Python Transcripts
Chapter: Days 45-48: Build a simple Django app
Lecture: Demo quote CRUD app we will build
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
Let's quickly look at the application we're going to build. Here I went to the demo folder. I made a virtual environment.
0:09
I did the migration to the database and don't worry, in the coming videos we're going through all of this, step by step. And then I did a run server.
0:21
I can now access my app on this localhost IP. And again, we go through this, step by step, later. I just want to show you the app. So, a nice design.
0:35
All credits to mui.css. And we can add quotes so that gets measured, gets managed which I think is from Drucker.
0:50
I can give it a source where I found it. I can give it a cover. Let's actually look for one. Alright. So the cover can be a JPEG link.
1:09
New, and the quote got edit. I can go into the quote and here you see my background, which is pretty cool. I can go back. I can edit it.
1:24
Let's say Peter Drucker and can commit it to the database. I can add some bogus. I don't like bogus. I can delete it. It asks for a confirmation. Done.
1:38
So here you see, full krat operations. Create, read, update and delete. So, pretty basic krat app but will service to show all the components
1:49
involved to get a Django app working. Alright, let's start coding.