MongoDB Haskell driver, including patch for MongoDB v.6.* authentication with SCRAM-SHA256
Go to file
Fumiaki Kinoshita 46cfe5bf9a Get rid of MonadFail constraints in Database.MongoDB.Query 2023-01-12 14:25:48 +09:00
Database Get rid of MonadFail constraints in Database.MongoDB.Query 2023-01-12 14:25:48 +09:00
doc Minor sample fix of liftIO for GHC >= 8.0 2021-06-13 21:50:50 -07:00
test Make `findCommand` tests run just for MongoDB 3.2 or superior 2020-07-31 13:50:33 -05:00
.gitignore Cleaning, updating codebase to avoid warnings/infos 2022-06-18 13:33:55 +02:00
.travis.yml Force reinstalls when installing dependencies 2019-02-26 18:41:38 -08:00
Benchmark.hs Increase benchmark size for better resolution 2016-04-30 14:08:19 -07:00
CHANGELOG.md Get rid of MonadFail constraints in Database.MongoDB.Query 2023-01-12 14:25:48 +09:00
LICENSE Add license file 2010-06-28 20:24:23 -04:00
README.md Add docker-compose file for dev environment 2017-04-09 11:16:06 -07:00
Setup.lhs User WriteFailure instead of WriteError 2017-04-09 20:43:54 -07:00
docker-compose.yml Add aggregate that returns Cursor 2018-02-08 22:18:58 -08:00
mongoDB.cabal Bump version 2022-10-26 21:13:29 -07:00
reattach.sh Add docker-compose file for dev environment 2017-04-09 11:16:06 -07:00
stack-ghc80.yaml Add module Database.MongoDB.Internal.Network. 2019-05-29 18:02:37 -07:00
stack-ghc82.yaml Add module Database.MongoDB.Internal.Network. 2019-05-29 18:02:37 -07:00
stack-ghc84.yaml Add module Database.MongoDB.Internal.Network. 2019-05-29 18:02:37 -07:00
stack-ghc86-network3.yaml Add module Database.MongoDB.Internal.Network. 2019-05-29 18:02:37 -07:00
stack-ghc86.yaml Add module Database.MongoDB.Internal.Network. 2019-05-29 18:02:37 -07:00
stack.yaml Added a clarificatory remark and one example to openReplicaSet' 2022-01-15 16:20:27 +01:00
stack.yaml.lock Added a clarificatory remark and one example to openReplicaSet' 2022-01-15 16:20:27 +01:00

README.md

This is the Haskell MongoDB driver (client). MongoDB is a free, scalable, fast, document database management system. This driver lets you connect to a MongoDB server, and update and query its data. It also lets you do adminstrative tasks, like create an index or look at performance statistics.

Join the chat at https://gitter.im/mongodb-haskell/mongodb Build Status

Documentation

Dev Environment

It's important for this library to be tested with various versions of mongodb server and with different ghc versions. In order to achieve this we use docker containers and docker-compose. This repository contains two files: docker-compose.yml and reattach.sh.

Docker compose file describes two containers.

One container is for running mongodb server. If you want a different version of mongodb server you need to change the tag of mongo image in the docker-compose.yml. In order to start your mongodb server you need to run:

docker-compose up -d mongodb

In order to stop your containers without loosing the data inside of it:

docker-compose stop mongodb

Restart:

docker-compose start mongodb

If you want to remove the mongodb container and start from scratch then:

docker-compose stop mongodb
docker-compose rm mongodb
docker-compose up -d mongodb

The other container is for compiling your code. By specifying the tag of the image you can change the version of ghc you will be using. If you never started this container then you need:

docker-compose run mongodb-haskell

It will start the container and mount your working directory to /opt/mongodb-haskell If you exit the bash cli then the conainer will stop. In order to reattach to an old stopped container you need to run script reattach.sh. If you run docker-compose run again it will create another container and all work made by cabal will be lost. reattach.sh is a workaround for docker-compose's inability to pick up containers that exited.

When you are done with testing you need to run:

docker-compose stop mongodb

Next time you will need to do:

docker-compose start mongodb
reattach.sh

It will start your stopped container with mongodb server and pick up the stopped container with haskell.