What you'll learn:
- Install Python
- Install Django
- Install PostgreSQL Database Server
- Connect database to web application
- Create virtual environment
- Create database
- Run Migrations
- Create views and Models
- Display data from database on web app
- Style app with Bootstrap
- Use static files
- Create object links
- Display media content
Web applications are basically apps that can be accessed via a web browser.
If you want to become a web developer building web based applications that interacts with databases is a vital skill to have. Almost all applications we interact with daily interacts with databases that stores and retrieves information. Example applications that interacts with databases includes:
Online Banking
Amazon
Ebay
In this course we will create a web based application using Python and Django and we will create and store objects inside a PostgreSQL database that will interact with our web application's front end.