Steps to get Started:
1.) Create venv file by running the following:
Mac Instructions: python -m venv venv
Win Instructions: py -m venv .venv
2.) Activate the venv by running the following:
Mac Instructions: source venv/bin/activate
Win Instructions: .venv\Scripts\activate
3.) After you've activated the venv, you'll need to install the dependencies by running the following:
Mac Instructions: pip install -r requirements.txt
Win Instructions: pip install -r requirements.txt
4.) When the dependencies are done installing, can run the following to start the server:
Mac Instructions: flask run
Win Instructions: flask run