Skip to content

Quick Start

Get the project running locally in under 5 minutes.

Prerequisites

Before you begin, ensure you have:

Setup

1. Clone the Repository

git clone git@github.com:luminarium-ai/luminarium-proof.git
cd luminarium-proof

2. Install Dependencies

npm install

3. Configure Environment

cp .env.example .env.local

The default configuration works with the local Docker database.

4. Start Local Database

docker compose up -d

This starts Azure SQL Edge on port 1433.

5. Run Development Server

npm run dev

6. Verify It Works

curl http://localhost:3000/api/health

Expected response:

{
  "status": "ok",
  "database": "connected",
  "timestamp": "2026-01-13T..."
}

What's Next?