Removed npm workspace configuration in favor of simple multi-project repository. Each project (web-app, housekeeping) is now completely self-contained. ## Changes - Removed root package.json and package-lock.json - Added VS Code workspace file for better project organization - Updated documentation to reflect independent project structure - Each project manages its own dependencies without workspace linking ## Structure - web-app/: Self-contained Next.js application - housekeeping/: Self-contained DB maintenance scripts - No workspace management or dependency sharing - Monorepo is purely for Git organization 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
21 lines
589 B
Markdown
21 lines
589 B
Markdown
# Housekeeping
|
|
|
|
Database backup and maintenance scripts for the Evidencija Režija application.
|
|
|
|
## Scripts
|
|
|
|
- `db-backup--standalone.sh` - Backup database in standalone deployment
|
|
- `db-backup--swarm.sh` - Backup database in Docker Swarm deployment
|
|
- `db-dump--standalone.sh` - Dump database in standalone deployment
|
|
- `db-restore-from-dump--standalone.sh` - Restore from dump in standalone deployment
|
|
- `db-restore-from-backup--swarm.sh` - Restore from backup in Docker Swarm deployment
|
|
|
|
## Usage
|
|
|
|
From the housekeeping directory:
|
|
|
|
```bash
|
|
cd housekeeping
|
|
./db-backup--standalone.sh
|
|
```
|