You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Production-grade, multi-tenant AI content moderation platform.
Stack
Layer
Technology
Frontend
React 18 + Vite + Recharts
Backend
Node.js + Express
Database
MongoDB + Mongoose
Auth
JWT + Role-based access
Deployment
Docker + Docker Compose
Quick Start
With Docker (recommended)
# 1. Clone and configure
cp .env.example .env
# Edit .env — set JWT_SECRET at minimum# 2. Build and start
docker-compose up --build
# App is live at http://localhost
Local Development
# Backendcd backend
cp .env.example .env # configure
npm install
npm run dev # runs on :5000# Frontend (separate terminal)cd frontend
npm install
npm run dev # runs on :5173 with proxy to :5000