Metadata-Version: 1.0
Name: hoard
Version: 1.0
Summary: UNKNOWN
Home-page: http://github.com/ghickman/hoard-cli
Author: George Hickman
Author-email: george@ghickman.co.uk
License: Copyright (c) 2013 George Hickman

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Description: hoard (CLI)
        ===========
        This utility allows you to pull variables for a project from your [treasure] `hoard
        <http://github.com/ghickman/hoard>`_.
        
        
        Installation
        ------------
        Use your favourite python package installer::
        
            pip install hoard-cli
        
        
        Configuration
        -------------
        Set your hoard url and default environment in ``~/.hoardrc``::
        
            [hoard]
            url=<some_url>
            env=dev
        
        
        Set your project name in your project's ``.hoard`` (ideally in your project's top level directory)::
        
            [hoard]
            project=<project_name>
        
        
        Usage
        -----
        List environments for a project, with overrides for project and env::
        
            hoard get [--project] [--env]
        
        
        Set one or more environment variables, with overrides for project and env::
        
            hoard set [--project] [--env] KEY=value [KEY=value,...]
        
        
        Delete one or more environment variables, with overrides for project and env::
        
            hoard rm [--project] [--env] KEY [KEY,...]
        
        
        Project specific commands, e.g. show the current project, list envs for current project, list all projects::
        
            hoard project [project] [--envs] [--all]
        
        
        Environment specific commands, e.g. show the current env, list all envs::
        
            hoard env [--all]
        
        
        Get your auth token from the server backend::
        
            hoard login
        
        
        Clear your local auth token::
        
            hoard logout
        
        
        
        Changelog for Trove (CLI)
        =========================
        
        1.0
        ---
        Initial release.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.7
