Skip to content

bisht2050/get-started-cxx

 
 

Repository files navigation

Get-Started C++

Repository to help getting started with MongoDB C++ driver connecting to MongoDB Atlas.

Information

This Get-Started project uses MongoDB C++ driver version 3.6.6 by default. Although you can change the driver version, the provided code example was only tested against the default version of MongoDB driver. There is no guarantee that the code sample will work for all possible versions of the driver.

Pre-requisites

Docker

Have Docker running on your machine. You can download and install from: https://docs.docker.com/install/

MongoDB Atlas

In order to execute the code example, you need to specify MONGODB_URI environment variable to connect to a MongoDB cluster. If you don't have any you can create one by signing up MongoDB Atlas Free-tier M0.

Execution Step

Execute the helper shell script followed by the MongoDB URI that you would like to connect to.

./get-started.sh "mongodb+srv://usr:pwd@example.mongodb.net/dbname?retryWrites=true"

Changing The Driver Version

The Docker image has been built with a specific version. If you would like to use a different version, you could build a new image. Example:

docker build . -t start-cxx --build-arg DRIVER_VERSION=3.6.5 

This will build a docker image with a tag name start-cxx. Open the helper script get-started.sh in an editor of your choice, and change the value of DOCKER_IMAGE to start-cxx and save the file. Execute the helper script followed by the MongoDB URI.

Tutorials

About

This project is part of the MongoDB Get-Started code examples. Please see get-started-readme for more information.

Disclaimer

This software is not supported by MongoDB, Inc under any of their commercial support subscriptions or otherwise. Any usage is at your own risk.

About

Repository to help getting started with MongoDB C++ driver connecting to MongoDB Atlas

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 92.7%
  • Dockerfile 5.6%
  • Shell 1.7%