Skip to content

Quick Start

Get Eryxon Flow running in under 10 minutes.



  1. Go to supabase.comNew Project
  2. Name it eryxon-flow
  3. Save your database password
  4. Click Create
  5. Wait ~2 minutes for setup

Go to SettingsAPI and copy:

  • Project URL (e.g., https://abc123.supabase.co)
  • anon public key (starts with eyJ...)
  1. Go to SQL Editor
  2. Copy contents of supabase/schema.sql from this repo
  3. Paste and click Run

Terminal window
git clone https://github.com/your-org/eryxon-flow.git
cd eryxon-flow
npm install
cp .env.example .env

Edit .env:

VITE_SUPABASE_URL=https://your-project-id.supabase.co
VITE_SUPABASE_PUBLISHABLE_KEY=your-anon-key

Start the app:

Terminal window
npm run dev

Open http://localhost:8080


  1. Click Sign Up
  2. Enter email and password
  3. Verify email (check inbox)
  4. You’re now admin of your organization!

Want to see the app with sample data?

  1. Go to SettingsOrganization
  2. Click Load Demo Data
  3. Explore sample jobs, parts, and operations
PageWhat it does
/admin/dashboardProduction overview
/admin/jobsManage manufacturing jobs
/admin/jobs/newCreate new job
/operator/work-queueOperator task list
/operator/terminalShop floor interface
/admin/config/stagesConfigure workflow stages


Can’t sign up?

  • Check your Supabase URL is correct in .env
  • Verify email settings in Supabase Auth dashboard

Database errors?

  • Make sure you ran the schema SQL
  • Check the SQL Editor for any errors

Page not loading?

  • Verify both environment variables are set
  • Check browser console for errors


Happy manufacturing!