Creating a Django Web Application with a PostgreSQL Database on Windows
I'm going to try and go through this course first to try and look at PostgreSQL in relation to Django.
*Most of this is just for revision or to get a 100% clear picture of any basic info I may have missed
What is a web framework?
Web framework provides developers with ready-made components that perform those functionalities
What is Django?
Django is especially useful for database-driven websites because of it’s Model-View-Template (MVT), and there’s hardly any applications that exist without a database
The MVT allows developers to change the visual part of an app without affecting the business part of the logic, and vice versa. As of now, Django officially supports four databases: PostgreSQL, MySQL, SQLite, and Oracle
What is Postgres[s]QL?