# =============================== # Python # =============================== __pycache__/ *.py[cod] *$py.class # Virtual environments .venv/ venv/ env/ ENV/ # Pyenv .python-version # =============================== # FastAPI / Uvicorn # =============================== *.log uvicorn.log # =============================== # Environment variables # =============================== .env .env.* !.env.example # =============================== # IDE / Editor # =============================== .vscode/ .idea/ *.swp *.swo # =============================== # OS # =============================== .DS_Store Thumbs.db # =============================== # Test / Coverage # =============================== .pytest_cache/ .coverage htmlcov/ # =============================== # Build / Distribution # =============================== build/ dist/ *.egg-info/ # =============================== # Database / Runtime files # =============================== *.sqlite3 *.db # =============================== # Cache / Temp # =============================== .cache/ tmp/ temp/ service/* !service/default.yaml *.db