-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.toml.example
More file actions
38 lines (29 loc) · 1.12 KB
/
config.toml.example
File metadata and controls
38 lines (29 loc) · 1.12 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
# Example configuration for limitless_tools.
# Copy this file to your user config path or pass as --config.
# Default user config path: ~/limitless_tools/config/config.toml
[default]
# Your API key for Limitless (or set LIMITLESS_API_KEY in env/.env)
api_key = "YOUR_API_KEY"
# Optional API URL override (default: https://api.limitless.ai)
# api_url = "https://api.limitless.ai"
# Root directory where lifelog JSON files are stored
data_dir = "~/limitless_tools/data/lifelogs"
# Default timezone (IANA name). Used by `sync` if not provided via flag/env
timezone = "UTC"
# Default page size for API fetches
batch_size = 50
# Default HTTP timeout (seconds). Leave unset to use CLI default (30s).
http_timeout = 45
# Default output directory for commands that write files when a CLI path
# is not provided. Used by:
# - export-markdown --combine (if --write-dir omitted)
# - export-csv (if --output omitted)
output_dir = "~/limitless_tools/exports"
[work]
# Example alternate profile
api_key = "WORK_API_KEY"
data_dir = "~/work/data/lifelogs"
timezone = "America/Los_Angeles"
batch_size = 100
http_timeout = 60
output_dir = "~/work/exports"