1
I developed a web application in Python and Django and I need to backup the data daily. Currently, I used the Postgres
like SGBD.
To perform the backup I discovered the module django-dbbackup
, but to use it is necessary to run the command python manage.py dbbackup
.
How do I automatically generate backup every day at a given time?