From 9c544ace5df88494ea0a938cdcc7cb7c50f3a62d Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Thu, 19 Feb 2026 11:52:01 -0800 Subject: [PATCH] Update entryPoint setting in README to specify module notation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 900c164..3f95376 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ View real-time logs from your FastAPI Cloud deployed applications directly withi | Setting | Description | Default | |---------|-------------|---------| -| `fastapi.entryPoint` | Path to the main FastAPI application file (e.g., `src/main.py`). If not set, the extension searches common locations: `main.py`, `app/main.py`, `api/main.py`, `src/main.py`, `backend/app/main.py`. | `""` (auto-detect) | +| `fastapi.entryPoint` | Entry point for the main FastAPI application in module notation (e.g., `my_app.main:app`). If not set, the extension searches `pyproject.toml` and common locations. | `""` (auto-detect) | | `fastapi.codeLens.enabled` | Show CodeLens links above test client calls (e.g., `client.get('/items')`) to navigate to the corresponding route definition. | `true` | | `fastapi.cloud.enabled` | Enable FastAPI Cloud integration (status bar, deploy commands). | `true` | | `fastapi.telemetry.enabled` | Send anonymous usage data to help improve the extension. See [TELEMETRY.md](TELEMETRY.md) for details on what is collected. | `true` |