The Insighter Enterprise is a unified, project-centric Data Science Operations (DSOps) platform. It consolidates data ingestion, interactive exploration, model training, and production deployment into a single, high-performance interface.
- Unified Studio: A project-centric workspace with plug-and-play tools for Notebooks, Experiments, and Data Management.
- System Bus Architecture: Real-time communication between independent tools using a Publish/Subscribe pattern with strict Zod validation.
- Enterprise Auth: Secure, JWT-based authentication powered by Supabase with granular Row-Level Security (RLS).
- ML Lifecycle Management: Integrated experiment tracking, model registry, and one-click REST API deployments.
- Collaborative Data Hub: Centralized dataset management supporting CSV, JSON, and Parquet with automated schema inference.
git clone https://github.com/your-org/The-Insighter-Enterprise.git
cd The-Insighter-Enterprisecd backend
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txt
# Set up .env with your Supabase credentials
uvicorn app.main:app --reloadcd frontend
npm install
# Set up .env with NEXT_PUBLIC_SUPABASE_URL and NEXT_PUBLIC_SUPABASE_ANON_KEY
npm run devVisit http://localhost:3000 to start your first project!
The platform follows the Unified Tool Architecture (UTA) pattern:
- Frontend: Next.js 16 (Turbopack) App Router with specialized
ToolContextfor inter-tool orchestration. - Backend: FastAPI serving as a secure gateway to ML services and the data layer.
- Data Layer: PostgreSQL (Supabase) for relational metadata and S3-compatible storage for artifacts.
- Security: RLS-protected database access ensuring data isolation between users and teams.
We welcome contributions! Please follow these steps:
- Fork the repository.
- Create a feature branch (
git checkout -b feature/amazing-feature). - Commit your changes (
git commit -m 'Add amazing feature'). - Push to the branch (
git push origin feature/amazing-feature). - Open a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
The Insighter Team - support@the-insighter.enterprise
Project Link: https://github.com/nyxus-dev-labs/Insighter
Built with ❤️ for the Data Science Community.