Files
evidencija-rezija/housekeeping/db-restore-from-dump--standalone.sh
Knee Cola 57dcebd640 refactor: convert repository to monorepo with npm workspaces
Restructured the repository into a monorepo to better organize application code
and maintenance scripts.

## Workspace Structure
- web-app: Next.js application (all app code moved from root)
- housekeeping: Database backup and maintenance scripts

## Key Changes
- Moved all application code to web-app/ using git mv
- Moved database scripts to housekeeping/ workspace
- Updated Dockerfile for monorepo build process
- Updated docker-compose files (volume paths: ./web-app/etc/hosts/)
- Updated .gitignore for workspace-level node_modules
- Updated documentation (README.md, CLAUDE.md, CHANGELOG.md)

## Migration Impact
- Root package.json now manages workspaces
- Build commands delegate to web-app workspace
- All file history preserved via git mv
- Docker build process updated for workspace structure

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-25 12:13:04 +01:00

90 lines
2.5 KiB
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
# ==============================================================================
# MongoDB Dump Restore Script (Standalone Docker)
# ==============================================================================
#
# PURPOSE:
# Restores the 'utility-bills' database from a mongodump archive.
# The database server remains running during the restore process.
#
# WHEN TO USE:
# - For standalone Docker deployments (not Docker Swarm)
# - To restore from dumps created by db-dump--standalone.sh
# - When you need to restore without shutting down the database
#
# RESTORE TYPE:
# - Online (hot) restore - DB server keeps running
# - Database-level restore - only 'utility-bills' database
# - Drops existing collections before restoring (--drop flag)
#
# INPUT:
# - Requires dump filename as parameter
# - Looks for file in: ./mongo-backup/
# - Log file: ./mongo-backup/db-restore-from-dump.log
#
# USAGE:
# ./db-restore-from-dump--standalone.sh <dump-filename>
# ./db-restore-from-dump--standalone.sh utility-bills-dump-2025-11-26_14-30.tar.gz
#
# WARNING:
# This will DROP all existing collections in the 'utility-bills' database
# before restoring. Make sure you have a backup if needed!
#
# ==============================================================================
# Configuration
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# create backup directory if it doesn't exist
BACKUP_DIR="$SCRIPT_DIR/mongo-backup"
mkdir -p "$BACKUP_DIR"
# initialize log file (overwrite if exists)
LOG_FILE="$BACKUP_DIR/db-restore-from-dump.log"
> "$LOG_FILE"
# Function to log messages
log() {
local timestamp=$(date '+%Y-%m-%d %H:%M:%S')
echo "[$timestamp] $*" | tee -a "$LOG_FILE"
}
# Check if dump filename is provided
if [ $# -eq 0 ]; then
log "Error: No dump filename provided"
log "Usage: $0 <dump-filename>"
log "Example: $0 utility-bills-dump-2025-11-26_14-30.tar.gz"
exit 1
fi
DUMP_FILENAME="$1"
DUMP_FILE="$BACKUP_DIR/$DUMP_FILENAME"
# Check if dump file exists
if [ ! -f "$DUMP_FILE" ]; then
log "Error: Dump file not found: $DUMP_FILE"
exit 1
fi
log "Starting database restore process..."
log "Restoring from: $DUMP_FILE"
CONTAINER_NAME="evidencija-rezija__mongo"
DB_NAME="utility-bills"
docker exec "$CONTAINER_NAME" sh -c '
mongorestore \
--username root \
--password HjktJCPWMBtM1ACrDaw7 \
--authenticationDatabase admin \
--db '$DB_NAME' \
--archive=/backup/'$DUMP_FILENAME' \
--gzip \
--drop
'
log "Database restore completed successfully."