Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.moorcheh.ai/llms.txt

Use this file to discover all available pages before exploring further.

Summary

RequirementRequired?Why
Python 3.10+YesInstalls moorcheh-edge (CLI + SDK)
DockerYesRuns the edge server container via moorcheh-edge up

How install and startup work

pip install moorcheh-edge
moorcheh-edge up
StepWhat it does
pip install moorcheh-edgeInstalls the moorcheh-edge CLI and Python SDK
moorcheh-edge upPulls moorcheh/moorcheh-edge:latest (if needed), starts Docker container, creates ~/.moorcheh-edge/data
You do not need Rust or a local source checkout. The server runs from the published Docker image.

Python

Version: Python 3.10 or newer
python --version
pip install moorcheh-edge

Docker

Verify Docker is running:
docker --version
docker info
On first moorcheh-edge up, Docker pulls moorcheh/moorcheh-edge:latest from Docker Hub.

Ports

PortService
8080Default Moorcheh Edge API
If port 8080 is in use:
moorcheh-edge up --server-port 8083
moorcheh-edge status --base-url http://localhost:8083

Next steps