Mike
Open-source release containing the Mike frontend and backend.
Contents
frontend/ - Next.js application
backend/ - Express API, Supabase access, document processing, and migrations
backend/migrations/000_one_shot_schema.sql - one-shot 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/migrations/000_one_shot_schema.sql in the Supabase SQL editor for a fresh database.
Start the backend: