- Clone this repository
- Navigate to the /tutor/server directory
cd tutor/server
- Create a virtual environment (If python3 or pip3 commands do not work, switch to using python and pip)
python3 -m venv venv
- Activate the virtual environment Linux/MacOS:
source venv/bin/activate
Windows:
. venv\Scripts\activate
- Install the requirements:
pip3 install -r requirements.txt
- Run the flask web app:
flask run
- Once it is running in that terminal, in a new terminal window, navigate to the /tutor/website directory
- In the /tutor/website directory, install npm with
npm install
- Once npm is installed, run:
npm run dev
- Navigate to localhost:3000 in your browser to view and use the website features.