15 lines
501 B
Bash
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>
|