Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ Patchbay doesn't give you a way to join pubs yet, so this is good if you've alre

### Harder Install (full dev setup)

Install a standalone scuttlebot (your gossip server)
Install a standalone ssb-server (your gossip server)
```sh
npm install scuttlebot@latest -g
npm install ssb-server@latest -g
```

```sh
Expand Down
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ exports.create = (api) => {
function Connections (config) {
const connections = (process.platform === 'win32')
? undefined // this seems wrong?
: { incoming: { unix: [{ 'scope': 'local', 'transform': 'noauth' }] } }
: { incoming: { unix: [{ 'scope': 'local', 'transform': 'noauth', server: true }] } }

return connections ? { connections } : {}
}
Expand Down
Loading