OSS AI Legal Platform
Find a file
cosimoastrada dbbf19697e
Merge pull request #51 from aaronjmars/security/tabular-document-idor
fix(security): scope tabular-review document_ids by access (CWE-639)
2026-05-10 21:03:38 +08:00
backend Merge pull request #51 from aaronjmars/security/tabular-document-idor 2026-05-10 21:03:38 +08:00
docs docs: add safe local testing guide 2026-05-04 20:09:05 -04:00
frontend feat: add OpenAI model support and harden OSS security defaults 2026-05-09 14:55:51 +08:00
.gitignore Add local repo contents 2026-04-29 19:49:06 +02:00
LICENSE Add local repo contents 2026-04-29 19:49:06 +02:00
README.md Sync security and backend profile updates 2026-05-08 20:45:16 +08:00

Mike

Open-source release containing the Mike frontend and backend.

Contents

  • frontend/ - Next.js application
  • backend/ - Express API, Supabase access, document processing, and database schema
  • backend/schema.sql - Supabase schema for fresh databases

Setup

Install dependencies:

npm install --prefix backend
npm install --prefix frontend

Create local env files from the examples:

cp backend/.env.example backend/.env
cp frontend/.env.local.example frontend/.env.local

Run backend/schema.sql in the Supabase SQL editor for a fresh database.

Start the backend:

npm run dev --prefix backend

Start the frontend:

npm run dev --prefix frontend

Open http://localhost:3000.

Required Services

  • Supabase Auth and Postgres
  • S3-compatible object storage, such as Cloudflare R2
  • At least one supported model provider key, depending on which models you enable
  • LibreOffice for DOC/DOCX to PDF conversion

Checks

npm run build --prefix backend
npm run build --prefix frontend
npm run lint --prefix frontend

License

AGPL-3.0-only. See LICENSE.