rap-ci-training How to test Requirements Python 3.7 Virtualenv How to run: Create a virtual environment for the application: virtualenv --python=python3 .venv Activate the virtual environment: source .venv/bin/activate Install the requirements: pip install -r requirements.txt Run tests: pytest Run the application: uvicorn app.main:app --reload View the autogenerated API documentation: http://127.0.0.1:8000/docs