Files
adastra_scripts/dbrestore_mongo/.env.example
T
2026-04-28 21:26:23 +02:00

15 lines
501 B
Bash

# MongoDB Restore Configuration
# Copy this file to .env and update with your values
# This configuration should match your local MongoDB instance
# MongoDB credentials (for the target database)
MONGO_USERNAME=admin
MONGO_PASSWORD=password
MONGO_HOST=localhost
MONGO_PORT=27017
MONGO_DATABASE=adastradb
MONGO_AUTHSOURCE=admin
# Note: The connection string will be constructed as:
# mongodb://<MONGO_USERNAME>:<MONGO_PASSWORD>@<MONGO_HOST>:<MONGO_PORT>/<MONGO_DATABASE>?authSource=<MONGO_AUTHSOURCE>