120 lines
4.3 KiB
Plaintext
120 lines
4.3 KiB
Plaintext
Metadata-Version: 2.4
|
|
Name: django-dbbackup
|
|
Version: 4.3.0
|
|
Summary: Management commands to help backup and restore a project database and media.
|
|
Home-page: https://github.com/jazzband/django-dbbackup
|
|
Author: Archmonger
|
|
Author-email: archiethemonger@gmail.com
|
|
License: BSD
|
|
Keywords: django,database,media,backup,amazon,s3,dropbox,sqlite
|
|
Classifier: Development Status :: 5 - Production/Stable
|
|
Classifier: Environment :: Web Environment
|
|
Classifier: Environment :: Console
|
|
Classifier: Framework :: Django :: 3.2
|
|
Classifier: Framework :: Django :: 4.2
|
|
Classifier: Framework :: Django :: 5.0
|
|
Classifier: Framework :: Django :: 5.1
|
|
Classifier: Framework :: Django :: 5.2
|
|
Classifier: Intended Audience :: Developers
|
|
Classifier: Intended Audience :: System Administrators
|
|
Classifier: License :: OSI Approved :: BSD License
|
|
Classifier: Natural Language :: English
|
|
Classifier: Operating System :: OS Independent
|
|
Classifier: Programming Language :: Python
|
|
Classifier: Programming Language :: Python :: 3.7
|
|
Classifier: Programming Language :: Python :: 3.8
|
|
Classifier: Programming Language :: Python :: 3.9
|
|
Classifier: Programming Language :: Python :: 3.10
|
|
Classifier: Programming Language :: Python :: 3.11
|
|
Classifier: Programming Language :: Python :: 3.12
|
|
Classifier: Programming Language :: Python :: 3.13
|
|
Classifier: Topic :: Database
|
|
Classifier: Topic :: System :: Archiving
|
|
Classifier: Topic :: System :: Archiving :: Backup
|
|
Classifier: Topic :: System :: Archiving :: Compression
|
|
Requires-Python: >=3.7
|
|
Description-Content-Type: text/x-rst
|
|
License-File: LICENSE.txt
|
|
License-File: AUTHORS.txt
|
|
Requires-Dist: django>=3.2
|
|
Requires-Dist: pytz
|
|
Dynamic: author
|
|
Dynamic: author-email
|
|
Dynamic: classifier
|
|
Dynamic: description
|
|
Dynamic: description-content-type
|
|
Dynamic: home-page
|
|
Dynamic: keywords
|
|
Dynamic: license
|
|
Dynamic: license-file
|
|
Dynamic: requires-dist
|
|
Dynamic: requires-python
|
|
Dynamic: summary
|
|
|
|
Django Database Backup
|
|
======================
|
|
|
|
.. image:: https://github.com/jazzband/django-dbbackup/actions/workflows/build.yml/badge.svg
|
|
:target: https://github.com/jazzband/django-dbbackup/actions
|
|
|
|
.. image:: https://readthedocs.org/projects/django-dbbackup/badge/?version=stable
|
|
:target: https://django-dbbackup.readthedocs.io/
|
|
:alt: Documentation Status
|
|
|
|
.. image:: https://codecov.io/gh/jazzband/django-dbbackup/branch/master/graph/badge.svg?token=zaYmStcsuX
|
|
:target: https://codecov.io/gh/jazzband/django-dbbackup
|
|
|
|
.. image:: https://jazzband.co/static/img/badge.svg
|
|
:target: https://jazzband.co/
|
|
:alt: Jazzband
|
|
|
|
This Django application provides management commands to help backup and
|
|
restore your project database and media files with various storages such as
|
|
Amazon S3, Dropbox, local file storage or any Django storage.
|
|
|
|
It is made to:
|
|
|
|
- Allow you to secure your backup with GPG signature and encryption
|
|
- Archive with compression
|
|
- Deal easily with remote archiving
|
|
- Keep your development database up to date
|
|
- Use Crontab or Celery to setup automated backups
|
|
- Manually backup and restore via Django management commands
|
|
|
|
Docs
|
|
====
|
|
|
|
See our official documentation at `Read The Docs`_.
|
|
|
|
Why use DBBackup
|
|
================
|
|
|
|
This software doesn't reinvent the wheel, in a few words it is a pipe between
|
|
your Django project and your backup storage. It tries to use the traditional dump &
|
|
restore mechanisms, apply compression and/or encryption and use the storage system you desire.
|
|
|
|
It gives a simple interface to backup and restore your database or media
|
|
files.
|
|
|
|
Contributing
|
|
============
|
|
|
|
.. image:: https://jazzband.co/static/img/jazzband.svg
|
|
:target: https://jazzband.co/
|
|
:alt: Jazzband
|
|
|
|
This is a `Jazzband <https://jazzband.co>`_ project. By contributing you agree
|
|
to abide by the `Contributor Code of Conduct <https://jazzband.co/about/conduct>`_
|
|
and follow the `guidelines <https://jazzband.co/about/guidelines>`_.
|
|
|
|
All contribution are very welcomed, propositions, problems, bugs and
|
|
enhancement are tracked with `GitHub issues`_ system and patches are submitted
|
|
via `pull requests`_.
|
|
|
|
We use GitHub Actions as continuous integration tools.
|
|
|
|
.. _`Read The Docs`: https://django-dbbackup.readthedocs.org/
|
|
.. _`GitHub issues`: https://github.com/jazzband/django-dbbackup/issues
|
|
.. _`pull requests`: https://github.com/jazzband/django-dbbackup/pulls
|
|
.. _Coveralls: https://coveralls.io/github/jazzband/django-dbbackup
|