We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2cdd15e + c4a4c05 commit f2a0902Copy full SHA for f2a0902
README.md
@@ -46,3 +46,18 @@ func main() {
46
fmt.Println(err)
47
}
48
```
49
+
50
+## Developing
51
52
+### Running Tests
53
54
+```bash
55
+# Start the Redis Containers
56
+docker-compose up -d
57
58
+# Run Tests
59
+go test ./...
60
61
+# Stop the Containers
62
+docker-compose down
63
+```
docker-compose.yml
@@ -0,0 +1,12 @@
1
+version: "3.1"
2
3
+services:
4
+ redis1:
5
+ image: redis
6
+ ports:
7
+ - "56379:6379"
8
9
+ redis2:
10
11
12
+ - "56378:6379"
0 commit comments