MikesLab Plugins
Identity
Identity
  • 🌟Identity Wiki
  • General
    • Installation
    • Commands
    • Placeholders
  • CONFIG
    • Introduction
    • Input GUI
    • Value GUI
    • Selector GUI
    • Main GUI
    • How to install your GUI configs
  • Element
    • Element
    • Conditions
    • Actions
  • RESOURCE
    • Colors
  • GUI
    • Layout
    • Page System
  • DATABASE
    • Setup your First Connection
      • MongoDB
      • SQL
      • JSON
Powered by GitBook
On this page
  1. DATABASE
  2. Setup your First Connection

MongoDB

Establish your first MongoDB Connection

PreviousSetup your First ConnectionNextSQL

Last updated 10 months ago

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"