This project is an example webapp made by following a YouTube tutorial by Tech With Tim on how to build a complete webapp in Python using the Flask web framework. It's features include:
- Routes
- Authentication
- HTML rendering
- Database connection
- Creating and deleting notes in the user's home page
- Message flashing
In order to run this project, make sure you already have Python installed, then follow the instructions:
-
Clone this repository
-
Install
flask
,flask-sqlalchemy
andflask-login
pip install flask, flask-sqlalchemy, flask-login
-
Run the
main.py
file in the project directorypython main.py
-
Access the server in your localhost
http://127.0.0.1:5000