https://github.com/data-fair/backup
Backup management service
https://github.com/data-fair/backup
Last synced: 4 months ago
JSON representation
Backup management service
- Host: GitHub
- URL: https://github.com/data-fair/backup
- Owner: data-fair
- License: agpl-3.0
- Created: 2020-03-26T10:30:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-12T14:33:14.000Z (over 2 years ago)
- Last Synced: 2024-01-13T03:36:48.807Z (over 2 years ago)
- Language: JavaScript
- Size: 4.27 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# backup
Backup management service.
For now these functionalities are supported:
- backup mongodb databases
- backup directories
- split files to prevent copying large files
- daily backup into a directory (NFS, etc.)
- weekly backup in cold archiving tool (OVH cloud archive for now)
- admin only web UI
- notifications in case of failure
Dev env:
```
docker-compose up -f
npm run dev-server
npm run dev-client
```
Testing dump scripts:
```
node scripts/dump.js mongo
node scripts/dump.js dir:test:./test
node scripts/restore.js dir:test:./test
node scripts/restore.js mongo/data-fair-production
```