Skip to content

Commit

Permalink
readme: reorder sections
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkaufman committed Jan 24, 2021
1 parent bfd272c commit eab20c8
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,24 @@ sudo python3 -mpip uninstall SharedArray
sudo python3 -mpip install -r requirements.txt
```

### Twilio Setup

While the singing component does not require any external integration,
the video call component to support the default interface
does. You will need to sign up for a Twilio account, and then fill out
`~/src/solstice-audio-test/secrets.json` as:

```
{
"twilio": {
"account_sid": "...",
"api_key": "...",
"api_secret": "...",
"room": "You can name your room anything"
}
}
```

### Simple Configuration

Handles up to ~60users.
Expand Down Expand Up @@ -167,24 +185,6 @@ location /api {
}
```

### Twilio Setup

While the singing component does not require any external integration,
the video call component to support the default interface
does. You will need to sign up for a Twilio account, and then fill out
`~/src/solstice-audio-test/secrets.json` as:

```
{
"twilio": {
"account_sid": "...",
"api_key": "...",
"api_secret": "...",
"room": "You can name your room anything"
}
}
```

### Sharded Configuration

Handles up to ~1000 users, at ~60/core. The instructions below assume
Expand Down

0 comments on commit eab20c8

Please sign in to comment.