This repository represents my refresher for Flask development. The app created in this repository exercises the following skills
- Python fundamentals
- Web application hosting
- Database management and migration via ORM syntax
- HTML and CSS styling
- Security considerations for user management
It is highly recommended to create a python virtual in which to manage the dependencies of this project. This repo was created using Python 3.9.
pip install -r requirements.txtOnce the dependencies are installed, open up a terminal.
flask runThis will run the flask application and expose it to port 5000
http://localhost:5000At this point, feel free to interact with the application as you wish.