Memory built for teams

Search everything your team knows. Get answers with sources.

Configuration

Configure your memory store

Define what gets indexed and remembered. Use glob patterns to include documentation, code, and context your team needs.

yaml
1# Lightfast Configuration
2# Docs: https://lightfast.com/docs/get-started/config
3
4version: 1
5
6# Store name (unique identifier for this documentation set)
7store: root-store
8
9# Files to include (glob patterns)
10include:
11 - "README.md"
12
13# Files to exclude (optional)
14exclude:
15 - "**/node_modules/**"
16 - "**/.git/**"