This project has end points which interact with MySQL database
You need the following programs:
- Python (>=3.9.0)
- Flask (>=1.1.2)
- MySQL
First download or clone the repository. Next to place inside the folder.
In order to start the server, first make sure that you have the virtual environment created if not run the next command
#for windows
py -3 -m venv venv
#for linux
python3 -m venv venvNext run the activate command which is placed inside the folder vent/Scripts
#for windows
.\venv\Scripts\activate.bat
#for linux
.\venv\Scripts\activateOnce the virtual environment is activated set the variable of the entry point
#for windows
set FLASK_APP=app.py
#for linux
export FLASK_APP=app.pyFinally run the next command to start the server
python app.pyDeveloped by Edgar Pozas