Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Repository to help getting started with MongoDB Go driver connecting to MongoDB Atlas

License

Notifications You must be signed in to change notification settings

mongodb-developer/get-started-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notice: Repository Deprecation

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.

Get-Started Go

Repository to help getting started with MongoDB Go driver connecting to MongoDB Atlas.

Information

This Get-Started project uses MongoDB Go driver version 1.9.0 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 an existing cluster, you can create one by signing up MongoDB Atlas Free-tier M0.

Execution Steps

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"

To use a different driver version, specify the driver version after the MongoDB URI. For example:

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

Execute commands within the Docker environment

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" -w /workspace/go ghcr.io/mongodb-developer/get-started-go "sh"

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.