Metadata-Version: 1.2
Name: django-fs-dump
Version: 0.0.2
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)
Description: 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>`_
        
Platform: UNKNOWN
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
