Metadata-Version: 1.0
Name: django-snapshot
Version: 0.1.0
Summary: Django backup and restore tool. Handle upload files and database
Home-page: UNKNOWN
Author: Ivan Gromov
Author-email: ivan.gromov@redsolution.ru
License: GPLv3
Description: ===============
        django-snapshot
        ===============
        
        Installation:
        =============
        
        1. Add ``snapshot`` to ``INSTALLED_APPS`` in your ``settings.py`` within your django project.
        
        
        Usage
        ======
        
        Use management command ``snap``
        
            ``./manage.py snap``
        
        *help:*
        
        *    snap save         - take a snapshot at current time
        *    snap restore [i]  - restore from [i] snapshot (0 by default)
        *    snap list         - list all available snapshots
         
        
        How it works:
        =============
        
        Program create \*.tar.gz archive with files:
        
            **info.json** - JSON description of archive's contents for ``restore`` command
            
            **directory_backup.2011-01-01.tar** - backup of upload directory
            
            **database_postgres_backup.2011-01-01.sql** - SQL database dump
        
        All files created and restored automatically, you do not need to bother of 
        their structure.
        
        Restrictions:
        ==============
        
        Django-snapshot works now only with PostgreSQL database. Nor sqlite or MySQL are not supported.
        If you have any suggestions, email developers. Any feedback is welcome.
Keywords: django snapshot backup restore tool
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Framework :: Django
Classifier: Environment :: Web Environment
Classifier: Natural Language :: Russian
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
