You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
313 B
21 lines
313 B
# mongox-go-driver
|
|
|
|
## testing locally
|
|
|
|
reqs:
|
|
- mongodb v4.0 or newer run on localhost
|
|
- golang v1.13 or newer
|
|
|
|
test it by calling go tests
|
|
```sh
|
|
$ go test ./...
|
|
```
|
|
|
|
## testing by using dockerfile
|
|
|
|
reqs:
|
|
- docker with buildkit
|
|
|
|
```sh
|
|
$ DOCKER_BUILDKIT=1 docker build -t mongox-testing -f testing.Dockerfile .
|
|
``` |