From 060a97a847f760c7dd1e3175782323c4ee7c4857 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 19 Feb 2026 18:21:33 +0000 Subject: [PATCH] Rename `.env` heading to "Environment variable files" in configuration docs The section covers dotenv files generally (`.env`, `.env.local`, `.env.development`, `--env-file`, `UV_ENV_FILE`), not just the literal `.env` file. The new heading better reflects its scope. https://claude.ai/code/session_013sAojuNWpGZspd9M64K2pa --- docs/concepts/configuration-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/configuration-files.md b/docs/concepts/configuration-files.md index e034bd198fbc3..056944bf82f99 100644 --- a/docs/concepts/configuration-files.md +++ b/docs/concepts/configuration-files.md @@ -76,7 +76,7 @@ configuration files (e.g., user-level configuration will be ignored). See the [settings reference](../reference/settings.md) for an enumeration of the available settings. -## `.env` +## Environment variable files `uv run` can load environment variables from dotenv files (e.g., `.env`, `.env.local`, `.env.development`), powered by the [`dotenvy`](https://github.com/allan2/dotenvy) crate.