# Optional legacy/CI MongoDB Connection URIs.
# Arcula does not load .env by default; pass --env to load this file.
# Recommended local setup: use `arcula connection add <name> --kind <kind>`
# so raw URIs live in your OS keychain/keyring instead of this file.
MONGO_LOCAL_URI=mongodb://localhost:27017
MONGO_DEV_URI=mongodb://user:password@dev.example.com:27017
MONGO_STG_URI=mongodb://user:password@stg.example.com:27017
MONGO_PROD_URI=mongodb://user:password@prod.example.com:27017
# Optional environment metadata for safety and agent use.
# Values: local, dev, staging, prod, other.
# If omitted, Arcula infers LOCAL/DEV/STG/PROD from the env name.
MONGO_LOCAL_KIND=local
MONGO_DEV_KIND=dev
MONGO_STG_KIND=staging
MONGO_PROD_KIND=prod
# Optional extra protection for non-prod environments.
# Protected/prod targets cannot be dropped or cleared unless --backup true and backup succeeds.
# Protected/prod targets also require the saved plan + OS-backed approval flow.
# MONGO_STG_PROTECTED=true
# Path to MongoDB binaries
MONGODB_BIN_PATH=/usr/local/bin
# Backup directory
BACKUP_DIR=./backups
# Logging level: trace, debug, info, warn, error
RUST_LOG=info