Coverage for src/edwh/constants.py: 100%
12 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-13 17:03 +0200
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-13 17:03 +0200
1import typing as t
2from pathlib import Path
4# file.seek(_, whence), 'whence' can be one of:
5FILE_START = 0
6FILE_RELATIVE = 1
7FILE_END = 2
9DOCKER_COMPOSE = "docker --log-level error compose" # used to be docker-compose. includes in docker-compose requires
10DEFAULT_TOML_NAME = ".toml" # was config.toml
11FALLBACK_TOML_NAME = "default.toml"
12LEGACY_TOML_NAME = "config.toml" # set to None when no longer supported
13DEFAULT_DOTENV_PATH = Path(".env")
14DEFAULT_HOST = "localhost"
16type AnyDict = dict[str, t.Any]