| 1 | # Development guide |
| 2 | |
| 3 | In this folder, you will find information about contributing code to matterbridge. |
| 4 | |
| 5 | ## Building from source |
| 6 | |
| 7 | See [../compiling.md](../compiling.md). |
| 8 | |
| 9 | ## Implementing a new protocol backend |
| 10 | |
| 11 | See [protocol.md](protocol.md). |
| 12 | |
| 13 | ## General pull-request guidelines |
| 14 | |
| 15 | When submitting a PR, it's expected that: |
| 16 | |
| 17 | - you have successfully run `go fmt` on the codebase |
| 18 | - you have successfully run `golangci-lint` on the codebase |
| 19 | - you have updated the corresponding bridge/protocol docs in `docs/protocols` |
| 20 | |