docker-compose buildto build the Docker images (only needed if there are changes to Dockerfile or dependencies)docker-compose upto start the applicationdocker-compose downto stop running containers (Run this first when developing)docker logs fastapi-otel-collector-1will show the traces logged from the collector
python -m venv venvto create a venv.\venv\Scripts\Activateto activate venvpip install -r requirements.txtto install dependenciespip freeze > requirements.txtto capture current dependencies
uvicorn app:app --reloadto start the development server without Jaeger or OpenTelemetry