refactor: replace .env.example with .env.template in documentation

- Remove volumes/env/.env.example file
- Update all documentation references to use .env.template instead
- Update bootstrap script error message
- Update .gitignore comment
This commit is contained in:
Songbird
2025-10-27 12:20:16 +01:00
committed by tduhamel42
parent 97d8af4c52
commit 8bf5e1bb77
9 changed files with 9 additions and 49 deletions

View File

@@ -149,7 +149,7 @@ def write_lines(path: Path, lines: Iterable[str]) -> None:
def read_env_file() -> list[str]:
if not ENV_FILE_PATH.exists():
raise FileNotFoundError(
f"Expected env file at {ENV_FILE_PATH}. Copy volumes/env/.env.example first."
f"Expected env file at {ENV_FILE_PATH}. Copy volumes/env/.env.template first."
)
return read_lines(ENV_FILE_PATH)