|
|
|
|
|
by yummyfajitas
5345 days ago
|
|
I don't get it - what does django-dbbackup offer over 4 lines of bash: outputfile=/tmp/database_`date +%Y_%m_%d`.sql.gz
pg_dump fashiondb -U fashionuser | gzip > $outputfile
s3cmd --config ~/.s3cfg put $outputfile s3://mybucket
rm $outputfile
|
|
I haven't looked, but it might also, in the spirit of Django, be "database agnostic" and allow you to import data across DBMSs. You'd still need to keep some things like uploaded files in sync though.