github.com/amrnt/deis@v1.3.1/docs/using_deis/install-client.rst (about)

     1  :title: Install the Deis Client on your Workstation
     2  :description: First steps for developers using Deis to deploy and scale applications.
     3  
     4  .. _install-client:
     5  
     6  Install the Client
     7  ==================
     8  The Deis command-line interface (CLI), or client, allows you to interact
     9  with a Deis :ref:`Controller`. You must install the client to use Deis.
    10  
    11  Install the Deis Client
    12  -----------------------
    13  
    14  Install the latest ``deis`` client for Linux or Mac OS X with:
    15  
    16  .. code-block:: console
    17  
    18      $ curl -sSL http://deis.io/deis-cli/install.sh | sh
    19  
    20  The installer puts ``deis`` in your current directory, but you should move it
    21  somewhere in your $PATH:
    22  
    23  .. code-block:: console
    24  
    25      $ ln -fs $PWD/deis /usr/local/bin/deis
    26  
    27  Proxy Support
    28  -------------
    29  Set the ``http_proxy`` or ``https_proxy`` environment variable to enable proxy support:
    30  
    31  .. code-block:: console
    32  
    33      $ export http_proxy="http://proxyip:port"
    34      $ export https_proxy="http://proxyip:port"
    35  
    36  Integrated Help
    37  ---------------
    38  The Deis client comes with comprehensive documentation for every command.
    39  Use ``deis help`` to explore the commands available to you:
    40  
    41  .. code-block:: console
    42  
    43      $ deis help
    44      The Deis command-line client issues API calls to a Deis controller.
    45  
    46      Usage: deis <command> [<args>...]
    47  
    48      Auth commands::
    49  
    50        register      register a new user with a controller
    51        login         login to a controller
    52        logout        logout from the current controller
    53  
    54      Subcommands, use ``deis help [subcommand]`` to learn more::
    55      ...
    56  
    57  To get help on subcommands, use ``deis help [subcommand]``:
    58  
    59  .. code-block:: console
    60  
    61      $ deis help apps
    62      Valid commands for apps:
    63  
    64      apps:create        create a new application
    65      apps:list          list accessible applications
    66      apps:info          view info about an application
    67      apps:open          open the application in a browser
    68      apps:logs          view aggregated application logs
    69      apps:run           run a command in an ephemeral app container
    70      apps:destroy       destroy an application
    71  
    72      Use `deis help [command]` to learn more
    73  
    74  .. _pip: http://www.pip-installer.org/en/latest/installing.html
    75  .. _Python: https://www.python.org/