This is a project by Team 5 of A34 for the SC2006 Software Engineering Course.
For this project, we created Ecoventure, a fitness planning application which
users can use to help them decide on the location for their fitness activities.
The application will take into account the user's distance from the location and the weather conditions.
Additionally, users can accumulate points for checking-in to fitness areas that give points.
- This project should be ideally ran with Visual Studio Code
- Ensure that the Python extension is installed
- Ensure that Python is in the Environment path
- Make sure that Python is the intepreter
- Make sure the terminal is in the directory with the venv file
- Run the following code in the terminal
Windows:
venv\bin\activate
Mac/Linux:
source venv/bin/activate
- Run the following code in the terminal
Mac:
python install_dependencies.py
Windows:
pip install -r requirements.txt
- Change directory into code
cd code
- Run the following code in the terminal
Windows:
set FLASK_APP=main
$env:FLASK_APP = "main.py"
flask run
Mac/Linux:
export FLASK_APP=main
flask run