mirror of
https://github.com/status-im/codimd.git
synced 2025-01-10 09:06:02 +00:00
7 lines
213 B
Bash
7 lines
213 B
Bash
#!/bin/bash
|
|
path=./backups
|
|
today=$(date +"%Y%m%d")
|
|
timestamp=$(date +"%Y%m%d%H%M%S")
|
|
mkdir -p $path/$today
|
|
pg_dump hackmd > $path/$today/postgresql_$timestamp
|
|
mongodump -d hackmd -o $path/$today/mongodb_$timestamp |