-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.toml
More file actions
41 lines (31 loc) · 1.05 KB
/
Copy pathconfig.example.toml
File metadata and controls
41 lines (31 loc) · 1.05 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
# Example FCG configuration file
# Copy to ~/.fcg/config.toml (global) or {project}/.fcg/config.toml (project)
[storage]
database = "falkordb"
falkordb_uri = "localhost:6379"
# data_dir = "~/.fcg/data" # Base directory for embedded DB data (kuzu/ladybug)
# buffer_pool_size = "3GB" # Buffer pool size for embedded databases
[index]
max_file_size = 2097152
exclude_tests = true
# ignore = ["**/generated/**", "**/vendor/**"]
# annotation_nodes = ["Transactional", "Async"]
[annotations]
# include = ["MyCustomAnnotation", "BusinessLog"]
# exclude = ["Deprecated", "SuppressWarnings"]
[embedding]
# enabled = false
[system]
# goroutines = 0
# memory_limit = "4GB"
# gc_percent = 300 # GOGC value, 0 = use default (300)
# log_level = "info"
# ── Global only (~/.fcg/config.toml) ──
[cross_project_index]
# backend = "json"
# ── Project only ({project}/.fcg/config.toml) ──
# [[dependencies.projects]]
# path = "/path/to/shared-api"
# branch = "master"
# [dependencies.properties]
# "feign.payment.name" = "payment-service"