-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env
29 lines (26 loc) · 975 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Mongo_Username= floxynarteh
Mongo_Password= 31G5xoDO4ILU55Ca
# 31G5xoDO4ILU55Ca
# const { MongoClient, ServerApiVersion } = require('mongodb');
# const uri = "mongodb+srv://floxynarteh:[email protected]/?appName=Cluster0";
# // Create a MongoClient with a MongoClientOptions object to set the Stable API version
# const client = new MongoClient(uri, {
# serverApi: {
# version: ServerApiVersion.v1,
# strict: true,
# deprecationErrors: true,
# }
# });
# async function run() {
# try {
# // Connect the client to the server (optional starting in v4.7)
# await client.connect();
# // Send a ping to confirm a successful connection
# await client.db("admin").command({ ping: 1 });
# console.log("Pinged your deployment. You successfully connected to MongoDB!");
# } finally {
# // Ensures that the client will close when you finish/error
# await client.close();
# }
# }
# run().catch(console.dir);