Forums

Backup Django project

Hi everyone,

Is there a way to create a backup of an entire Django project.

How do you do this in general?

Cheers, Bob

Well, ordinarily, we would use a version control system like git, and push changes up to github or bitbucket. That would take care of backing up the code.

to back up data in the database, you could use manage.py dumpdata, or mysqldump, and then find a secure place to keep the dumps..