-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmulti-repo.yaml
More file actions
97 lines (96 loc) · 2.1 KB
/
Copy pathmulti-repo.yaml
File metadata and controls
97 lines (96 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# enola configuration for cross-repo analysis.
#
# This config enables all extractors so it works regardless of which
# languages each repository uses. Use append mode to build a combined
# snapshot across multiple repositories.
#
# Workflow:
# 1. Generate the first repo:
# > "Generate an architectural snapshot of /path/to/ruby-monolith"
#
# 2. Append additional repos:
# > "Generate a snapshot of /path/to/go-service with append mode"
#
# 3. Query across repos:
# > "Query all route facts" (all repos)
# > "Query all symbols in go-service" (single repo)
#
# Each repo is tagged with a label derived from its directory name
# (e.g. /path/to/go-service -> "go-service"). File paths in the
# fact store are prefixed with the repo label in multi-repo mode.
repo: "."
ignore:
# Dependencies and tooling
- "vendor/**"
- "node_modules/**"
- ".git/**"
- ".enola/**"
# Go tests
- "**/*_test.go"
# TypeScript tests
- "**/*.test.ts"
- "**/*.test.tsx"
- "**/*.spec.ts"
- "**/*.spec.tsx"
# Kotlin / Android build and cache
- "build/**"
- "**/build/**"
- ".gradle/**"
- "**/.gradle/**"
- "**/generated/**"
- "**/*Test.kt"
- "**/androidTest/**"
# Swift / Xcode build and cache
- "DerivedData/**"
- "**/DerivedData/**"
- "*.xcodeproj/**"
- "*.xcworkspace/**"
- "Pods/**"
- "**/Pods/**"
- ".build/**"
- "**/.build/**"
- "**/*Tests.swift"
- "**/*Test.swift"
# Ruby / Rails
- "**/*_spec.rb"
- "**/*_test.rb"
- "tmp/**"
- "log/**"
- "public/assets/**"
- "public/packs/**"
# Next.js / build and cache
- ".next/**"
- "out/**"
- ".vercel/**"
- ".turbo/**"
# Documentation
- "**/*.md"
- "**/*.mdx"
# Config / data
- "**/*.yml"
- "**/*.yaml"
- "**/*.json"
# CI / ops
- "Jenkinsfile"
- "**/Jenkinsfile"
- "**/Jenkinsfile*"
# Docker and env files
- "Dockerfile"
- "**/Dockerfile*"
- "**/.env*"
extractors:
- go
- kotlin
- typescript
- swift
- ruby
explainers:
- cycles
- layers
- crossrepo
- coverage
renderers:
- llm_context
output:
dir: ".enola"
max_context_tokens: 16000