feat: Add configurable timezone support via TZ environment variable#23
Open
andreas-vester wants to merge 1 commit intomainfrom
Open
feat: Add configurable timezone support via TZ environment variable#23andreas-vester wants to merge 1 commit intomainfrom
andreas-vester wants to merge 1 commit intomainfrom
Conversation
Implement timezone-aware timestamp handling to fix issue where timestamps were displayed in UTC instead of the configured local timezone. The system now uses the standard Unix TZ environment variable for configuration. Changes: - Added 'tz' configuration field to Settings class (defaults to Europe/Berlin) - Updated format_datetime_for_email() to use configured timezone - Updated vote timestamp recording to capture time in configured timezone - Added comprehensive parametrized unit tests for multiple timezones: - Europe/Berlin, Europe/London, America/New_York, Asia/Tokyo, UTC - Update .env and .env.example with TZ configuration documentation Fixes issue where Docker container timestamps were displayed in UTC instead of configured local timezone, causing timestamps in emails and archive to be several hours off. Default timezone is Europe/Berlin, but users can now configure any IANA timezone by setting the TZ environment variable in their .env file. Test coverage: - 89 tests passing (8 new parametrized timezone tests) - All lint and type checks passing Closes #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implement timezone-aware timestamp handling to fix issue where timestamps were displayed in UTC instead of the configured local timezone. The system now uses the standard Unix TZ environment variable for configuration.
Changes:
Fixes issue where Docker container timestamps were displayed in UTC instead of configured local timezone, causing timestamps in emails and archive to be several hours off.
Default timezone is Europe/Berlin, but users can now configure any IANA timezone by setting the TZ environment variable in their .env file.
Test coverage:
Closes #22