Metadata-Version: 2.1
Name: django-fs-dump
Version: 1.0.0
Summary: The Django-related reusable app provides the ability to dump database and media files via an admin interface.
Home-page: https://github.com/fogstream/django-fs-dump
Author: Yuri Lya
Author-email: yuri.lya@fogstream.ru
License: The MIT License (MIT)
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Requires-Python: >=3.6
License-File: LICENSE
Requires-Dist: pexpect==4.9.0

Prerequisites
=============

The package postgresql-client should be installed on the host.


Introduction
============

django-fs-dump is the Django-related reusable app provides the ability to dump database and media files via an admin interface.


Installation
============

Install ``django-fs-dump`` using ``pip``::

    $ pip install django-fs-dump

Add the ``'fs_dump'`` application to the ``INSTALLED_APPS`` setting of your Django project ``settings.py`` file::

    INSTALLED_APPS = (
        ...
        'fs_dump',
        ...
    )

Run ``migrate``::

    $ ./manage.py migrate


Credits
=======

`Fogstream <https://fogstream.ru>`_
