git ssb

2+

cel / scuttlebot.io



Tree: 7637418d38ab054ae11a567c04278551842b8d39

Files: 7637418d38ab054ae11a567c04278551842b8d39 / tmpl / docs / config / configure-scuttlebot.md

1719 bytesRaw

Configure Scuttlebot

Scuttlebot keeps all data and configuration in the ~/.ssb directory.

Configuration is stored in ~/.ssb/config, which is a JSON file:

{
  "host": "",
  "port": 8008,
  "timeout": 30000,
  "pub": true,
  "local": true,
  "friends": {
    "dunbar": 150,
    "hops": 3
  },
  "gossip": {
    "connections": 2
  },
  "master": [],
  "logging": {
    "level": "notice"
  }
}

You can also specify config flags in the sbot server call. For example:

sbot server --port 1234 --timeout 500

The options:

Built with git-ssb-web