mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-24 12:20:14 +01:00
* chore: Comment out deprecated MongoDB connection options in connectDb.js * replaced deprecrated MongoDB count() function with countDocuments() * npm audit fix (package-lock cleanup) * chore: Specify .env file in launch configuration * feat: gemini-2.0 * chore: bump express to 4.21.2 to address CVE-2024-52798 * chore: remove redundant comment for .env file specification in launch configuration --------- Co-authored-by: neturmel <neturmel@gmx.de>
17 lines
397 B
JSON
17 lines
397 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch LibreChat (debug)",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"program": "${workspaceFolder}/api/server/index.js",
|
|
"env": {
|
|
"NODE_ENV": "production"
|
|
},
|
|
"console": "integratedTerminal",
|
|
"envFile": "${workspaceFolder}/.env"
|
|
}
|
|
]
|
|
}
|