A centralized platform for managing, tracking, and automating message distribution across different systems and teams in a data warehouse environment.
MMS solves the challenge of scattered messaging scripts and undocumented communication processes by providing a unified platform for message management between upstream and downstream systems, as well as top-level reporting.
- Centralized message creation and editing
- Template management system
- Rich text editor with markdown support
- File attachment capabilities
- Message scheduling and automation
- Version control for messages
- Draft and approval workflow
- Multi-channel message delivery (Email, Slack, Teams, SMS)
- Configurable routing rules
- Recipient group management
- Priority levels and escalation
- Conditional delivery logic
- Bulk message handling
- Real-time delivery tracking
- Message status dashboard
- Delivery confirmation system
- Error tracking and alerts
- Performance metrics
- Historical data analysis
- Custom reporting
- Role-based access control
- User management
- System configuration
- Integration management
- Audit logging
- Security settings
- RESTful API
- Webhook support
- Database connectors
- Platform integrations (Slack, Teams, etc.)
- Custom script integration
- Batch processing capabilities
- Frontend: React + TypeScript
- Backend: Go (Gin framework)
- Database: PostgreSQL
- Message Queue: RabbitMQ
- Caching: Redis
- Authentication: JWT
- Documentation: Swagger/OpenAPI
mms/
├── client/ # React frontend
│ ├── src/
│ ├── public/
│ └── tests/
├── server/ # Go backend
│ ├── cmd/
│ │ └── api/ # Application entrypoint
│ ├── internal/
│ │ ├── handlers/ # HTTP handlers
│ │ ├── models/ # Data models
│ │ ├── repository/ # Database operations
│ │ ├── services/ # Business logic
│ │ └── middleware/ # HTTP middleware
│ ├── pkg/ # Shared packages
│ │ ├── config/
│ │ ├── logger/
│ │ └── utils/
│ └── tests/ # Integration tests
├── docs/ # Documentation
└── scripts/ # Utility scripts
- Go >= 1.21
- Node.js >= 18
- PostgreSQL >= 14
- RabbitMQ
- Redis
- Clone the repository
git clone https://github.com/pesnik/mms.git
cd mms
- Install dependencies
# Install frontend dependencies
cd client
npm install
# Install Go dependencies
cd ../server
go mod download
- Configure environment
# Copy environment files
cp .env.example .env
# Add your configuration values
- Initialize database
# Run migrations
go run cmd/migrate/main.go
- Start development servers
# Start backend (from server directory)
go run cmd/api/main.go
# Start frontend (from client directory)
npm run dev
API documentation is available at /swagger/index.html
when running the server locally.
- JWT-based authentication
- Role-based access control
- Input validation
- Rate limiting
- Request logging
- SSL/TLS encryption
- Data encryption at rest
# Run backend tests
cd server
go test ./...
# Run frontend tests
cd client
npm test
- Message template system
- Advanced routing rules
- Bulk message processing
- Custom integration framework
- Advanced analytics dashboard
- Mobile application
- Message archiving system
- AI-powered message optimization
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE.md file for details.
- Data Warehouse team for project requirements
- Contributors and testers
- Open source community