-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.dist.yaml
More file actions
45 lines (45 loc) · 1.99 KB
/
configuration.dist.yaml
File metadata and controls
45 lines (45 loc) · 1.99 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
wikidata_to_gedcom:
# Keeps entities cached to limit the number of requests.
entity_cache: # boolean (default true)
tree:
# Tree generation method
# ANCESTORS: load the ancestors of the character.
# DESCENDANTS: load the character's descendants
# CLASSIC: loads the ancestors and descendants of the character
# FULL: Loads parents and children with all the characters in the tree (can take a long time)
method:
# Maximum number of generation (from the central character)
generation_limit: # int (default 10)
# The fathers of the characters are either loaded or not
load_fathers: # boolean (default true)
# The mothers of the characters are either loaded or not
load_mothers: # boolean (default true)
# Men's children are either loaded or not
load_men_children: # boolean (default true)
# Women's children are either loaded or not
load_women_children: # boolean (default true)
# apply a cache to the branches of the tree
branch_cache: # boolean (default true)
thread:
# The program uses threads or not (greatly increases the speed of execution)
enable: # boolean (default false)
# Maximum number of threads used
max: # boolean (default 10)
export:
# Family tree output format
# GEDCOM: https://en.wikipedia.org/wiki/GEDCOM
format:
# Men are in the exported file or not
export_men: # boolean (default true)
# Women are in the exported file or not
export_women: # boolean (default true)
# List of characters properties that can be loaded
properties:
# - SEX
# - IS_HUMAN
# - DATE_DEATH
# - DATE_BIRTH
# - GIVEN_NAME (it is not recommended to use this property without the family name property)
# - FAMILY_NAME (it is not recommended to use this property for old people, as it is often not very well informed)
# - PLACE_BIRTH
# - PLACE_DEATH