feat: Implement Notification Service with Dapr Integration#27
Merged
feat: Implement Notification Service with Dapr Integration#27
Conversation
- Introduced a dedicated Notification Service as a microservice to handle notifications via Dapr pub/sub. - Implemented endpoints for managing notifications, including fetching and marking notifications as read. - Updated the TaskFlow API to integrate with the Notification Service, ensuring seamless communication for task-related notifications. - Enhanced the frontend with a Notification Bell component to display notifications and allow user interaction. - Updated deployment scripts and configurations to support the new Notification Service. This commit establishes a robust notification system that enhances user engagement and task management within the TaskFlow platform.
- Break long comment line in config.py - Sort imports alphabetically in jobs.py, tasks.py, events.py - Remove unused import publish_task_updated in tasks.py - Remove unused variable notify_user_id in tasks.py - Break long logger.info line in events.py
- Add deploy-prod.sh script for managed services deployment - Add values-cloud.yaml for cloud Helm configuration - Make DATABASE_PASSWORD conditional when using Neon - Fix notification service asyncpg MissingGreenlet error (use NullPool) - Fix sslmode→ssl conversion for asyncpg with Neon - Add Upstash Redis TLS support for Dapr pub/sub - Add .env.prod.example template This enables lightweight K8s deployments using: - Neon PostgreSQL (serverless, no in-cluster DBs) - Upstash Redis (serverless, for Dapr pub/sub) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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.
This commit establishes a robust notification system that enhances user engagement and task management within the TaskFlow platform.