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