Metadata-Version: 1.1
Name: kinto-wizard
Version: 1.0.0
Summary: kinto-wizard is a tool to configure a kinto server from an YAML file.
Home-page: https://github.com/Kinto/kinto-wizard
Author: Mozilla Services
Author-email: storage-team@mozilla.com
License: Apache License (2.0)
Description: kinto-wizard
        ============
        
        kinto-wizard is a tool that lets you setup an entire Kinto server from
        a Yaml file, or inspect an existing server and output a Yaml file.
        
        You can define Kinto objects (bucket, collection, groups, records)
        and configure their attributes and permissions.
        
        `Read more information about the file structure <https://github.com/Kinto/kinto/wiki/Handling-permission-on-a-Kinto-Server>`_
        
        
        Installation
        ------------
        
        The last release
        ~~~~~~~~~~~~~~~~
        
        .. code-block:: bash
        
            pip install kinto-wizard
        
        
        The development version
        ~~~~~~~~~~~~~~~~~~~~~~~
        
        After having cloned the repo:
        
        .. code-block:: bash
        
            pip install -e .
        
        
        How to use it?
        --------------
        
        Load
        ~~~~
        
        .. code-block:: bash
        
            kinto-wizard load \
                --server https://kinto-writer.stage.mozaws.net/v1 \
                --auth admin:credentials \
                new-config.yml
        
        Dump
        ~~~~
        
        .. code-block:: bash
        
            kinto-wizard dump \
                --server https://kinto-writer.stage.mozaws.net/v1 \
                --auth admin:credentials \
                > current-config.yml
        
        
        Changelog
        =========
        
        This document describes changes between each past release.
        
        1.0.0 (2016-11-22)
        ------------------
        
        **Initial version**
        
        - Supports dumping/loading groups and permissions from/to a YAML file.
        
        
        Contributors
        ============
        
        * Rémy Hubscher <rhubscher@mozilla.com>
        * Mathieu Leplatre <mathieu@mozilla.com>
        
Keywords: web sync json storage services
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: License :: OSI Approved :: Apache Software License
