MongoDB

Establish your first MongoDB Connection

Copy the URI string from MongoDB Compass or Atlas and set up your configuration as shown in the example below:

database:
 type: MONGODB
 uri: "mongodb://localhost:27017" # Example URI
 database: YourDatabase # Your database name
 table: YourCollection # Stands for Collection, if it doesn't exists, it will be created
 username: "" # Not Needed 
 password: "Your Password"

Last updated