-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml.example
More file actions
40 lines (31 loc) · 1014 Bytes
/
config.toml.example
File metadata and controls
40 lines (31 loc) · 1014 Bytes
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
# Otter Configuration File (Optional)
#
# This file is OPTIONAL - Otter works perfectly without it!
# All settings have sensible defaults.
#
# If you want to customize Otter's behavior, copy this file to:
# Windows: %USERPROFILE%\.otter\config.toml
# Linux/macOS: ~/.otter/config.toml
[network]
# Port to listen on (0 = random port, recommended)
# port = 0
# Enable mDNS for local network discovery
# mdns_enabled = true
# Enable DHT for distributed peer discovery
# dht_enabled = true
[identity]
# Path to identity file (relative to data directory)
# identity_file = "identity.json"
[logging]
# Log level: trace, debug, info, warn, error
# level = "info"
# Log to file (disabled by default)
# file = "otter.log"
[ui]
# Your display nickname (optional)
# nickname = "Alice"
# Theme (currently only "default" is supported)
# theme = "default"
# NOTE: This config file format is a placeholder for future features.
# Currently, most settings are controlled via command-line flags.
# See: otter --help