Skip to main content
EdgeQuake

Evaluate the EdgeQuake Workflow

Use this page as the shortest path from first run to meaningful validation: ingest a document, inspect the graph, compare retrieval modes, and trace answers back to source material.

If you need installation details first, go to the installation guide. If you want the production framing, continue to the enterprise page.

Interactive Demo Workflow

The demo is a real EdgeQuake stack running locally. It is best for evaluating document ingestion, graph construction, and query behavior end to end rather than browsing a static placeholder.

This flow is useful for platform teams testing Graph-RAG quality, developers validating API ergonomics, and decision-makers who want to understand what the product actually does before reading deep technical documentation.

1. Start services

Bring up PostgreSQL, the API, and the web UI with the standard development workflow.

make dev
2. Ingest a document

Upload a PDF or markdown source and watch chunking, extraction, and lineage-aware processing complete in the UI.

http://localhost:3000/documents
3. Query the graph

Ask the same question with different retrieval modes and compare local, global, hybrid, and graph-aware answers.

http://localhost:8080/health

What to Validate

  • Document upload and processing state transitions
  • Entity extraction quality and graph coverage
  • Query-mode differences for the same prompt
  • Source traceability from answer back to document

Need the stack recipe?

If you are evaluating the full experience, use the Makefile-based workflow instead of piecing services together manually. That keeps the ports, environment variables, and dependencies aligned with the docs.