github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+incompatible/README.md (about)

     1  <p align="center">
     2  <b><a href="#getting-started">Getting Started</a></b>
     3  |
     4  <b><a href="#downloads">Download</a></b>
     5  |
     6  <b><a href="#known-issues">Known Issues</a></b>
     7  |
     8  <b><a href="#filing-issues--feature-requests">Bugs/Feature Requests</a></b>
     9  |
    10  <b><a href="#plugin-development">Plugin Development</a></b>
    11  |
    12  <b><a href="#contributing--build-instructions">Contributing</a></b>
    13  </p>
    14  
    15  <img src="https://raw.githubusercontent.com/cloudfoundry/logos/master/CF_Icon_4-colour.png" alt="CF logo" height="100" align="left"/>
    16  
    17  # Cloud Foundry CLI
    18  
    19  [![GitHub version](https://badge.fury.io/gh/cloudfoundry%2Fcli.svg)](https://github.com/cloudfoundry/cli/releases/latest)
    20  [![Documentation](https://img.shields.io/badge/docs-online-ff69b4.svg)](https://docs.cloudfoundry.org/cf-cli)
    21  [![Command help pages](https://img.shields.io/badge/command-help-lightgrey.svg)](https://cli.cloudfoundry.org)
    22  [![Slack](https://slack.cloudfoundry.org/badge.svg)](https://slack.cloudfoundry.org)
    23  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/cloudfoundry/cli/blob/master/LICENSE)
    24  [![Code Climate](https://codeclimate.com/github/cloudfoundry/cli/badges/gpa.svg)](https://codeclimate.com/github/cloudfoundry/cli)
    25  
    26  ***Cloud Foundry CLI*** is the official command line client for [Cloud Foundry](https://cloudfoundry.org).
    27  Latest help of each command is [here](https://cli.cloudfoundry.org) (or run `cf help`);
    28  Further documentation is at the [docs page for the
    29  CLI](https://docs.cloudfoundry.org/cf-cli).
    30  
    31  If you have any questions, ask away on the #cli channel in [our Slack
    32  community](http://slack.cloudfoundry.org/) and the
    33  [cf-dev](https://lists.cloudfoundry.org/archives/list/cf-dev@lists.cloudfoundry.org/)
    34  mailing list, or [open a GitHub issue](https://github.com/cloudfoundry/cli/issues/new).  You can follow our development progress
    35  on [Pivotal Tracker](https://www.pivotaltracker.com/n/projects/892938).
    36  
    37  ## Getting Started
    38  
    39  Download and install the cf CLI from the [Downloads Section](#downloads).
    40  
    41  Once installed, you can log in and push an app.
    42  
    43  ![Example](.github/cf_example.gif)
    44  
    45  Check out our [community contributed CLI plugins](https://plugins.cloudfoundry.org) to further enhance your CLI experience.
    46  
    47  ## Downloads
    48  
    49  ### Installing using a package manager
    50  
    51  **Mac OS X** (using [Homebrew](http://brew.sh/) via the [cloudfoundry tap](https://github.com/cloudfoundry/homebrew-tap)):
    52  
    53  ```sh
    54  brew install cloudfoundry/tap/cf-cli
    55  ```
    56  
    57  **Debian** and **Ubuntu** based Linux distributions:
    58  
    59  ```sh
    60  # ...first add the Cloud Foundry Foundation public key and package repository to your system
    61  wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo apt-key add -
    62  echo "deb http://packages.cloudfoundry.org/debian stable main" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list
    63  # ...then, update your local package index, then finally install the cf CLI
    64  sudo apt-get update
    65  sudo apt-get install cf-cli
    66  ```
    67  
    68  **Enterprise Linux** and **Fedora** systems (RHEL6/CentOS6 and up):
    69  ```sh
    70  # ...first configure the Cloud Foundry Foundation package repository
    71  sudo wget -O /etc/yum.repos.d/cloudfoundry-cli.repo https://packages.cloudfoundry.org/fedora/cloudfoundry-cli.repo
    72  # ...then, install the cf CLI (which will also download and add the public key to your system)
    73  sudo yum install cf-cli
    74  ```
    75  
    76  ### Installers and compressed binaries
    77  
    78  | | Mac OS X 64 bit | Windows 64 bit | Linux 64 bit |
    79  | :---------------: | :---------------: |:---------------:| :------------:|
    80  | Installers | [pkg](https://cli.run.pivotal.io/stable?release=macosx64&source=github) | [zip](https://cli.run.pivotal.io/stable?release=windows64&source=github) | [rpm](https://cli.run.pivotal.io/stable?release=redhat64&source=github) / [deb](https://cli.run.pivotal.io/stable?release=debian64&source=github) |
    81  | Binaries | [tgz](https://cli.run.pivotal.io/stable?release=macosx64-binary&source=github) | [zip](https://cli.run.pivotal.io/stable?release=windows64-exe&source=github) | [tgz](https://cli.run.pivotal.io/stable?release=linux64-binary&source=github) |
    82  
    83  Release notes, and 32 bit releases can be found [here](https://github.com/cloudfoundry/cli/releases).
    84  
    85  **Download examples** with curl for Mac OS X and Linux binaries
    86  ```sh
    87  # ...download & extract Mac OS X binary
    88  curl -L "https://cli.run.pivotal.io/stable?release=macosx64-binary&source=github" | tar -zx
    89  # ...or Linux 64-bit binary
    90  curl -L "https://cli.run.pivotal.io/stable?release=linux64-binary&source=github" | tar -zx
    91  # ...move it to /usr/local/bin or a location you know is in your $PATH
    92  mv cf /usr/local/bin
    93  # ...copy tab completion file on Ubuntu (takes affect after re-opening your shell)
    94  sudo curl -o /usr/share/bash-completion/completions/cf https://raw.githubusercontent.com/cloudfoundry/cli/master/ci/installers/completion/cf
    95  # ...and to confirm your cf CLI version
    96  cf --version
    97  ```
    98  
    99  #### Edge binaries
   100  Edge binaries are *not intended for wider use*; they're for developers to test new features and fixes as they are 'pushed' and passed through the CI.
   101  Follow these download links for [Mac OS X 64 bit](https://cli.run.pivotal.io/edge?arch=macosx64&source=github), [Windows 64 bit](https://cli.run.pivotal.io/edge?arch=windows64&source=github) and [Linux 64 bit](https://cli.run.pivotal.io/edge?arch=linux64&source=github).
   102  
   103  ## Known Issues
   104  
   105  * In Cygwin and Git Bash on Windows, interactive password prompts (in `cf login`) do not work (see [issue #171](https://github.com/cloudfoundry/cli/issues/171)). Please use alternative commands (`cf api` and `cf auth` to `cf login`) to work around this.
   106  * API tracing to terminal (using `CF_TRACE=true`, `-v` option or `cf config --trace`) doesn't work well with some CLI plugin commands. Trace to file works fine. On Linux, `CF_TRACE=/dev/stdout` works too. See e.g. [this Diego-Enabler plugin issue](https://github.com/cloudfoundry-incubator/Diego-Enabler/issues/6).
   107  * .cfignore used in `cf push` must be in UTF8 encoding for CLI to interpret correctly.
   108  * On Linux, when encountering message "bash: .cf: No such file or directory", ensure that you're using the correct binary or installer for your architecture. See http://askubuntu.com/questions/133389/no-such-file-or-directory-but-the-file-exists
   109  
   110  ## Filing Issues & Feature Requests
   111  
   112  First, update to the [latest cli](https://github.com/cloudfoundry/cli/releases)
   113  and try the command again.
   114  
   115  If the error remains or feature still missing, check the [open issues](https://github.com/cloudfoundry/cli/issues) and if not already raised please file a new issue with the requested details.
   116  
   117  ## Plugin Development
   118  
   119  For development guide on writing a cli plugin, see [here](https://github.com/cloudfoundry/cli/tree/master/plugin/plugin_examples).
   120  
   121  ## Contributing & Build Instructions
   122  
   123  Please read the [contributors' guide](.github/CONTRIBUTING.md)
   124  
   125  If you'd like to submit updated translations, please see the [i18n README](https://github.com/cloudfoundry/cli/blob/master/cf/i18n/README-i18n.md) for instructions on how to submit an update.
   126