-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcodemapper.example.toml
More file actions
37 lines (31 loc) · 1.61 KB
/
codemapper.example.toml
File metadata and controls
37 lines (31 loc) · 1.61 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
# CodeMapper Configuration Example
# Rename this file to: codemapper.toml
# Place at: ~/.codemapper/codemapper.toml
# ============================================================================
# OUTPUT DIRECTORY CONFIGURATION
# ============================================================================
# OPTION 1: System-Level Management (Centralized Collection)
# All codemaps from all projects go to ONE central location
# Uncomment and set your preferred directory:
# output_dir = "~/.codemapper"
# output_dir = "~/Documents/all-my-codemaps"
# output_dir = "/path/to/centralized/location"
# OPTION 2: Project-Level Management (Local to Each Project)
# Creates a directory where you run the codemapper command
# Only used when output_dir is NOT set
# Uncomment ONE of the following:
# prefix_style = "dot" # Creates .codemaps/ (hidden, default behavior)
# prefix_style = "underscore" # Creates _codemaps/ (visible)
# prefix_style = "dash" # Creates -codemaps/ (visible)
# ============================================================================
# DEFAULTS (when no config file exists)
# ============================================================================
# - Creates .codemaps/ in current directory (project-level)
# - You can override with --output-dir CLI flag
# ============================================================================
# PRECEDENCE
# ============================================================================
# 1. CLI --output-dir flag (highest priority)
# 2. Config output_dir (system-level)
# 3. Config prefix_style (project-level)
# 4. Default: .codemaps/ in current directory