This repository is deprecated and no longer actively maintained. It contains outdated code examples or practices that do not align with current MongoDB best practices. While the repository remains accessible for reference purposes, we strongly discourage its use in production environments. Users should be aware that this repository will not receive any further updates, bug fixes, or security patches. This code may expose you to security vulnerabilities, compatibility issues with current MongoDB versions, and potential performance problems. Any implementation based on this repository is at the user's own risk. For up-to-date resources, please refer to the MongoDB Developer Center.
Repository to help getting started with MongoDB Ruby driver connecting to MongoDB Atlas.
This Get-Started project uses MongoDB Ruby driver latest stable version 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.
The Docker image also comes with the latest stable version of mongoid.
Have Docker running on your machine. You can download and install from: https://docs.docker.com/install/
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 an existing cluster, you can create one by signing up MongoDB Atlas Free-tier M0.
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"
You can invoke a terminal session within the Docker environment using the following command. From the top level directory, execute:
docker run -it -v "$(pwd):/workspace/ruby" -w /workspace/ruby ghcr.io/mongodb-developer/get-started-ruby:latest "sh"
This project is part of the MongoDB Get-Started code examples. Please see get-started-readme for more information.
This software is not supported by MongoDB, Inc under any of their commercial support subscriptions or otherwise. Any usage is at your own risk.