├── backend/ # Flask app │ ├── app.py │ ├── Dockerfile │ └── requirements.txt │ ├── frontend/ # React app (created with create-react-app) │ └── ... │ ├── db/ # MySQL initialization │ └── init ...
This is a Flask-based CRUD (Create, Read, Update, Delete) web application built by following a freeCodeCamp YouTube tutorial. The app allows users to perform basic CRUD operations on data through a ...