-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
42 lines (38 loc) · 1.54 KB
/
config.example.json
File metadata and controls
42 lines (38 loc) · 1.54 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
{
"kimai_url": "http://kimai.example.com",
"auth_user": "your.email@company.com",
"auth_token": "YOUR_API_TOKEN",
"daily_limit_hours": 8,
"dry_run": true,
"activity_mappings": {
"dev_embarque": {"id": 16, "name": "Développement Software Embarqué"},
"dev_applicatif": {"id": 17, "name": "Développement Software Applicatif"},
"doc": {"id": 20, "name": "Documentation"},
"conception_elec": {"id": 26, "name": "Conception électronique"},
"reunion": {"id": 34, "name": "Réunion"}
},
"default_activity": "dev_applicatif",
"auto_activity": {
"enabled": true,
"interval_minutes": 20,
"ask_before_change": false,
"rules": {
"dev_embarque": {
"extensions": [".c", ".h", ".s", ".ld", ".map"],
"keywords": ["firmware", "bootloader", "stm32", "hal", "driver", "uart", "spi", "i2c", "gpio"]
},
"dev_applicatif": {
"extensions": [".py", ".js", ".ts", ".cs", ".json", ".yaml", ".yml", ".sh", ".bat", ".ps1"],
"keywords": ["python", "script", "api", "server", "client", "database"]
},
"doc": {
"extensions": [".md", ".rst", ".txt"],
"keywords": ["readme", "documentation", "doc", "manual"]
},
"conception_elec": {
"extensions": [".sch", ".brd", ".kicad_pcb", ".kicad_sch"],
"keywords": ["schematic", "pcb", "kicad", "altium", "circuit"]
}
}
}
}