Skip to content

Quick Start

Start the Server

uv run compere --port 8090 --reload
compere --port 8090 --reload

CLI Options

Option Default Description
--host 127.0.0.1 Bind address
--port 8000 Port number
--reload false Auto-reload on code changes

Explore the API

Once running, visit these endpoints:

Health Check

Verify the server is running:

curl http://localhost:8090/health

Response:

{
  "status": "healthy",
  "timestamp": "2024-01-15T10:30:00Z",
  "version": "0.1.0"
}

Start the Demo UI (Optional)

In a separate terminal:

cd compere-ui
npm run dev

Open the displayed URL (usually http://localhost:3000).

Demo Scenarios

The UI includes pre-built scenarios:

Scenario Description
Restaurants Compare dining establishments
Movies Rank films by preference
Products Tech product comparisons
Gamers Esports player rankings

Select a scenario, click "Load Scenario", and start making comparisons.

Next Steps