Version 3.0.0
This release introduces a significant change to how environment variables and configuration are handled.
💥 BREAKING CHANGE
- Environment File Location: The
.env
file (and.env.example
) is now expected to be in the project root directory, not within theserver/
subdirectory. - Action Required:
- Move your existing
.env
file fromserver/.env
to.env
(in the project root). - If using Docker Compose, update your
docker-compose.yml
to specifyenv_file: ./.env
instead of./server/.env
.
- Move your existing
Other Changes
- The local development script (
npm run dev
) now uses Node's built-in--env-file
flag to load the root.env
file, simplifying the setup. - Error messages related to missing environment variables have been updated to reflect the new location.