...
1# Contributing to this library
2
3The source code for this library is [here](https://github.com/launchdarkly/go-server-sdk-redis-redigo). We encourage pull-requests and other contributions from the community. Since this library is meant to be used in conjunction with the LaunchDarkly Go SDK, you may want to look at the [Go SDK source code](https://github.com/launchdarkly/go-server-sdk) and our [SDK contributor's guide](http://docs.launchdarkly.com/docs/sdk-contributors-guide).
4
5## Submitting bug reports and feature requests
6
7The LaunchDarkly SDK team monitors the [issue tracker](https://github.com/launchdarkly/go-server-sdk-redis-redigo/issues) in this repository. Bug reports and feature requests specific to this project should be filed in the issue tracker. The SDK team will respond to all newly filed issues within two business days.
8
9## Submitting pull requests
10
11We encourage pull requests and other contributions from the community. Before submitting pull requests, ensure that all temporary or unintended code is removed. Don't worry about adding reviewers to the pull request; the LaunchDarkly SDK team will add themselves. The SDK team will acknowledge all pull requests within two business days.
12
13## Build instructions
14
15### Prerequisites
16
17This project should be built against the lowest supported Go version as described in [README.md](./README.md).
18
19### Building
20
21To build the library without running any tests:
22```
23make
24```
25
26### Testing
27
28To build the library and run all unit tests:
29```
30make test
31```
32
33The tests expect you to have Redis running locally on the default port, 6379. One way to do this is with Docker:
34
35```
36docker run -d -p 6379:6379 redis
37```
View as plain text