Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: readme updated with env vars #29

Merged
merged 1 commit into from
Dec 15, 2023
Merged
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
9 changes: 9 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,18 @@ Start an Intercom Manager instance:
docker run -d -p 8000:8000 \
-e PORT=8000 \
-e SMB_ADDRESS=http://<smburl>:<smbport> \
-e SMB_POLL=true \
-e SMB_POLL_INTERVAL_S=60 \
eyevinntechnology/intercom-manager
```

```
PORT=8000 intercom-manager api port.
SMB_ADDRESS=http://<smburl>:<smbport> The address:port of the Symphony Media Bridge instance.
SMB_POLL=true Activate regular interval polling to remove unused endpoints. Defaults to false.
SMB_POLL_INTERVAL_S=60 Polling interval length in seconds. Defaults to 60. Api will never poll more often than every 20s.
```

API docs is then available on `http://localhost:8000/docs/`

## Development
Expand Down