Unfortunately, we weren't able to upload the app onto Heroku for now so if you would like to try the app, do follow these steps:
- Download all the code and unzip if necessary to another folder
- Open command prompt/terminal at the folder
- Create a virtual environment by typing
python3 -m venv venv - Activate the virtual environment by typing
source venv/bin/activatefor Mac ORvenv\Scripts\activate.batfor Windows (do google online if it doesn't work as we are using mac) and there should now be a (venv) on the command line - Install the requirements using
pip3 install -r requirements.txt - After all the requirements have been installed, run the app using
flask run - If there is an error, try deactivating the virtual environment using
deactivateand reactivating as per step 4. After which, tryflask runagain. - The app should now launch. Looking forward to your feedback!