Skip to content

Commit 543a7e0

Browse files
authored
Update README.md badges (#638)
1 parent 73a21e5 commit 543a7e0

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ indent_size = 4
1515
max_line_length = 120
1616

1717
[*.md]
18-
indent_size = 2
18+
indent_size = 4
1919

2020
[*.html]
2121
max_line_length = off

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Django DBBackup
22

3-
[![Build Status](https://github.com/Archmonger/django-dbbackup/actions/workflows/ci.yml/badge.svg)](https://github.com/Archmonger/django-dbbackup/actions)
3+
<p>
4+
<a href="https://github.com/Archmonger/django-dbbackup/actions">
5+
<img src="https://github.com/Archmonger/django-dbbackup/actions/workflows/ci.yml/badge.svg">
6+
</a>
7+
<a href="https://pypi.python.org/pypi/django-dbbackup">
8+
<img src="https://img.shields.io/pypi/v/django-dbbackup.svg?label=PyPI">
9+
</a>
10+
<a href="https://github.com/Archmonger/django-dbbackup/blob/master/LICENSE.md">
11+
<img src="https://img.shields.io/badge/License-BSD-purple.svg">
12+
</a>
13+
<a href="https://archmonger.github.io/django-dbbackup/">
14+
<img alt="Website" src="https://img.shields.io/website?url=https%3A%2F%2Farchmonger.github.io%2Fdjango-dbbackup%2F&up_message=online&down_message=offline&logo=readthedocs&logoColor=white&label=docs">
15+
</a>
16+
</p>
417

518
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-supported storage.
619

@@ -21,6 +34,6 @@ For more details, see the [official documentation](https://archmonger.github.io/
2134

2235
DBBackup gives you a simple yet robust interface to backup, encrypt, transmit, and restore your database and media.
2336

24-
In a few words, it is a pipe between your Django project and your backups. It is written to be far more efficient than Django's [backup](https://docs.djangoproject.com/en/stable/ref/django-admin/)/[restore](https://docs.djangoproject.com/en/5.2/ref/django-admin/#loaddata) commands by using your database's native/standard/best procedure(s) or tool(s) to perform backups.
37+
In a few words, it is a pipe between your Django project and your backups. It is written to be far more efficient than Django's [backup](https://docs.djangoproject.com/en/stable/ref/django-admin/#dumpdata)/[restore](https://docs.djangoproject.com/en/stable/ref/django-admin/#loaddata) commands by using your database's native/standard/best procedure(s) or tool(s) to perform backups.
2538

2639
Ultimately, this helps simplify the task of "creating a backup" by removing the need for writing relational query commands, using complex tools, or creating scripts. Optionally, DBBackup can apply compression and/or encryption before transferring the data to nearly any storage system.

0 commit comments

Comments
 (0)