What's Changed
Features
1. Config File Hydration
When the CONFIG_FILE_PATH environment variable is set, the server replaces any ${VAR} placeholders in that file at startup using values from the environment (including .env files). The file is rewritten in-place before serving begins.
This is useful for injecting runtime configuration into static front-end apps without rebuilding them.
If any placeholders have no matching environment variable, the server still writes the file (substituting empty strings for missing values) and logs an error listing the unresolved variables.
Full Changelog: v0.0.7...v0.0.8