dbdump initial commit

This commit is contained in:
2026-04-28 21:24:57 +02:00
parent e17c339b8e
commit b5c1ac95b7
4 changed files with 702 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# MongoDB Dump Environment Configuration Example
# Copy this pattern to create environments: .env.prod, .env.uat, etc.
# DO NOT commit actual configuration files to version control
# Environment: example
# Created: 2026-04-14
# MongoDB credentials (no defaults - must be provided)
MONGO_USERNAME=admin_user
MONGO_PASSWORD=secure_password_here
MONGO_HOST=cluster0.mongodb.net
MONGO_PORT=27017
APP_NAME=my-app
# Note: The connection string will be constructed as:
# mongodb://<MONGO_USERNAME>:<MONGO_PASSWORD>@<MONGO_HOST>:<MONGO_PORT>/
# ?ssl=true&replicaSet=globaldb&retrywrites=false
# &maxIdleTimeMS=120000&appName=@<APP_NAME>@