A minimal rest API using flask in python for the backend of the PyGo Project
You can check the frontend of the project here
For developemnt first you need to create the virtual enviroment
In a directory other than the main directory use this command py -m venv <NAME YOUR WANT FOR THE VENV>
Then go to the root folder of the project and use this command to install dependencies pip install -r requirements.txt
Finally you can run the app with this commands
for running normally flask --app main run
for debugging flask --app main run --debug