curl -L https://github.com/golang-migrate/migrate/releases/download/$MIGRATE_VERSION/migrate.linux-amd64.tar.gz | tar xvz
```
Use official defaults when configuring services, then provide clear documentation for any custom values and ensure they can be overridden when needed.
# Use environment variables with descriptive commentsCLICKHOUSE_MAX_MEMORY_USAGE:"${CLICKHOUSE_MEM:-800000000}"# Default ~800MB, override with CLICKHOUSE_MEM
This approach reduces maintenance burden, makes configuration changes safer and more deliberate, and provides better visibility into how systems are configured.