Commit graph

8 commits

Author SHA1 Message Date
06c0af7009
Enhance type hinting
All checks were successful
Deploy to Server / deploy (push) Successful in 22s
2026-04-05 03:57:18 +02:00
d4fd35769d
Refactor URL handling to use BASE_URL across the application and add base_url context processor
All checks were successful
Deploy to Server / deploy (push) Successful in 22s
2026-04-03 19:51:01 +02:00
8dfcd118e5
Fix pyright attribute access issues in test_sitemaps and fix import in views 2026-03-22 00:34:01 +01:00
778f71320f
Suppress xml.etree security lint for sitemap test
Add explicit noqa comments for S405/S314 in core/tests/test_sitemaps.py to satisfy the linter in test context.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-21 23:40:16 +01:00
1161670c34
Fix ruff issues: rename lambda arg, replace Any with object for type annotations 2026-03-21 23:26:57 +01:00
6f6116c3c7
Move Twitch stuff to /twitch/ 2026-03-16 15:27:33 +01:00
faddc4c9b0 Implement user authentication system with custom user model, views, and templates
- Created custom User model extending Django's AbstractUser.
- Added user registration, login, and profile views with corresponding templates.
- Implemented user authentication functionality and integrated Bootstrap for styling.
- Updated project settings to use the new accounts app and user model.
- Added tests for user model and admin functionality.
2025-07-21 02:57:44 +02:00
96a159f691 Add environment configuration and email settings
- Created a new .env.example file for environment variable configuration including Django settings, email configurations, and common SMTP provider examples.
- Updated .vscode/settings.json to include additional words for spell checking.
- Enhanced config/settings.py to load environment variables using python-dotenv, added data directory management, and configured email settings.
- Updated config/urls.py to include debug toolbar URLs conditionally based on testing.
- Added pytest configuration in conftest.py for Django testing.
- Created core application with custom User model, admin registration, and migrations.
- Implemented tests for User model and admin functionalities.
- Updated pyproject.toml to include new dependencies for debugging and environment management.
- Updated uv.lock to reflect new package versions and dependencies.
2025-07-08 04:33:05 +02:00