A fully featured, cloud-native dashboard platform designed for real-time team collaboration, KPI monitoring, and dynamic data visualization. Built for SMEs, powered by AWS, and architected with scalability and security in mind.
- Next.js + TypeScript
- Vite (or CRA)
- Material UI
- Redux Toolkit
- Socket.IO Client
- Chart.js or Recharts
- Formik + Yup
- Node.js + Express
- Socket.IO Server
- PostgreSQL + TimescaleDB
- Redis
- AWS S3 + Lambda
- Python (for ETL)
- JWT, OAuth2 (Google)
- AWS ECS Fargate, RDS, Lambda, API Gateway
- Terraform (Infrastructure as Code)
- GitHub Actions (CI/CD)
- 🔐 OAuth2 login (Google/GitHub) with JWT
- 🧑🤝🧑 Multi-user real-time collaboration via WebSockets
- 📊 Drag-and-drop dashboard builder
- 📁 CSV upload with ETL transformation
- 📈 Visualizations with Chart.js/Recharts
- 🔄 WebSocket live syncing across sessions
- 🏢 Multi-tenant orgs and access control (RBAC)
- ☁️ AWS-native deployment with full Terraform IaC
- 🧪 Full CI/CD workflow using GitHub Actions
.
├── frontend/ # Frontend (React + Vite)
│ ├── components/
│ ├── pages/
│ ├── services/
│ ├── store/
│ └── hooks/
│
├── backend/ # Backend (Node.js + Express)
│ ├── controllers/
│ ├── routes/
│ ├── services/
│ ├── ws/
│ ├── models/
│ └── middlewares/
│
├── etl/ # ETL Pipeline (Python)
│ └── lambda_processor.py
│
├── infrastructure/ # Infrastructure (Terraform)
│ ├── main.tf
│ ├── variables.tf
│ └── modules/
│
├── .github/ # GitHub Actions workflows
│ └── workflows/
├── docker-compose.yml
├── README.md
└── .env.example
- Prerequisites Node.js (v18+)
Docker & Docker Compose
Python 3.10+
Terraform
AWS CLI
PostgreSQL + Redis (local or containerized)
- Setup Clone the repo
git clone https://github.com/HappyDevs1/pulse-realtime-dashboard.git
cd realtime-dashboardSetup environment variables
cp .env.example .envStart local development environment
docker-compose up --buildcd frontend && npm install && npm run dev
cd backend && npm install && npm run dev🛠 Environment Variables See .env.example for all necessary environment variables for local development.
Frontend: npm test (Jest + React Testing Library)
Backend: npm test (Jest + Supertest)
End-to-End: Cypress (WIP)
This project is fully integrated with GitHub Actions and Terraform.
CI/CD Pipeline Frontend: Lint → Build → Deploy to S3 or CloudFront
Backend: Docker → Push to ECR → Deploy to ECS
Infrastructure: terraform plan/apply via Actions
CSV uploaded to /upload
Stored in S3 raw-uploads bucket
AWS Lambda processes the file:
Cleans data
Timestamps it
Inserts to TimescaleDB via RDS Proxy
Lambda logs to CloudWatch
OAuth2 via Google/GitHub
JWT-based session management
Role-based access control:
admin, editor, viewer
Secure cookies + HTTPS (via CloudFront or ALB)
Dashboard export (PDF scheduler)
Role management UI
Audit logging per action
Billing module (maybe)
Plugin SDK for custom widgets
Contributions are welcome! Please read the CONTRIBUTING.md before opening a PR.
MIT License
For questions, feel free to open an issue or reach out via email: [email protected]