Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions docs/STARTER_KIT.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,25 @@ cd EverMemOS
# Start all services with Docker
docker compose up -d

# Install uv package manager
curl -LsSf https://astral.sh/uv/install.sh | sh

# Install dependencies
uv sync

# Copy environment template
cp env.template .env

# Edit .env and set:
# - LLM_API_KEY (for memory extraction)
# - VECTORIZE_API_KEY (for embedding/rerank)

# Start the EverMemOS server
uv run python src/run.py

# Verify services are running
curl http://localhost:1995/health
# Expected response: {"status": "healthy", ...}
```

### 2. Store Your First Memory
Expand Down