This repository contains projects developed while learning Flask. The projects are taken from many youtube tutorials and other resources. The projects are developed to learn the basics of Flask and to get familiar with the framework. The projects are not intended to be used in production.
- CRUD App (BASIC)
- Todo App
- URL Shortener App
- Clone the repository
- Create a virtual environment
- Install the requirements
- Run the app
git clone
cd learning-flask/<Project>
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python app.py