# Project This is a context 360 online project that uses Python and several dependencies. Make sure that all the necessary dependencies are included and updated in the `requirements.txt` file, follow these steps when adding new libraries. ## Update `requirements.txt` Whenever you add or update a dependency in the virtual environment, you must run the following command to update the `requirements.txt` file: ```bash pip freeze > requirements.txt To run the project locally follow the instructions below: python -m venv venv venv\Scripts\activate uvicorn main:app --reload