27 lines
756 B
YAML
27 lines
756 B
YAML
# Git Repository Sources Configuration
|
|
# Each source defines a library to ingest from a git repository
|
|
# Paths are relative to the cloned repo root
|
|
|
|
sources:
|
|
- library_id: foundryvtt
|
|
name: Foundry VTT
|
|
description: Foundry Virtual Tabletop system documentation
|
|
repo_url: https://github.com/foundryvtt/foundryvtt.git
|
|
branch: main
|
|
include_paths:
|
|
- docs
|
|
- src
|
|
exclude_paths:
|
|
- node_modules
|
|
- .git
|
|
|
|
# Add more sources here following the same structure:
|
|
# - library_id: my-repo
|
|
# name: My Repository
|
|
# description: My documentation
|
|
# repo_url: https://github.com/user/my-repo.git
|
|
# branch: main
|
|
# include_paths:
|
|
# - docs
|
|
# exclude_paths:
|
|
# - node_modules |