Metadata-Version: 1.1
Name: legion
Version: 0.8
Summary: Load balance your app on free Heroku instances.
Home-page: https://github.com/pmdartus/legion
Author: Neamar, PmDartus
Author-email: neamar@neamar.fr
License: UNKNOWN
Download-URL: https://github.com/pmdartus/legion/tarball/master
Description: Legion
        ====
        
        Toolkit to load-balance an app on Heroku free plan.
        
        How to use?
        --------------------
        > Your app must not be on Heroku yet. If it is, remove all remotes pointing to Heroku.
        
        ### Create a new legion:
        ```sh
        legion create [argument-for-all-heroku-app]
        ```
        
        This will create an app named `legion-[app-name]` on your Heroku app dashboard.
        
        ### Provision your legion
        Recruit new legionaries on your legion with:
        
        ```sh
        legion scale 20
        ```
        
        This will create 20 new apps, named `legion-[app-name]-worker-[number]`
        
        ### Deploy
        Deploy your source code on all your dynos
        
        ```sh
        legion deploy
        ```
        
        ### Destroy
        > Warning: this will destroy all apps from this legion!
        
        ```sh
        legion destroy
        ```
        
        How does it works?
        ------------------------------
        To make a legion with `n` dynos, `legion` creates `n+1` apps on heroku; your `n` workers and a load-balancer.
        The load-balancer is a simple round-robin between all your nodes.
        
Keywords: legion,heroku,scaling,paas
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: System Administrators
