Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

cloudfoundry-attic/cf

Repository files navigation

Deprecated

This gem has been deprecated. You can find the latest cli source at http://github.com/cloudfoundry/cli. The latest cli builds are available at https://console.run.pivotal.io/tools or https://github.com/cloudfoundry/cli/releases.

cf - Cloud Foundry Command Line Interface

Build Status Gem Version Code Climate

The Cloud Foundry CLI has been completely rewritten. Installation, usage & contribution instructions are below.

This tool requires cloud_controller_ng. It is not compatible with cloud_controller v1.

Requirements

cf should work with Ruby 1.9.x and newer.

Installation

$ gem install cf

Development

$ git clone git@github.com:cloudfoundry/cf.git
$ cd cf
$ bundle install

To run the specs:

$ bundle exec rake

To run the checked out code use the cf.dev script:

./bin/cf.dev 

Usage

See the 'cf help' command for up-to-date usage info:

$ cf help

Cloud Foundry Resources

Cloud Foundry Open Source Platform as a Service

Learn

Our documentation, currently a work in progress, is available here: http://cloudfoundry.github.com/

Ask Questions

Questions about the Cloud Foundry Open Source Project can be directed to our Google Groups.

File a bug

Bugs can be filed using Github Issues within the various repositories of the Cloud Foundry components.

OSS Contributions

The Cloud Foundry team uses GitHub and accepts contributions via pull request

Follow these steps to make a contribution to any of our open source repositories:

  1. Complete our CLA Agreement for individuals or corporations
  2. Set your name and email
$ git config --global user.name "Firstname Lastname"
$ git config --global user.email "your_email@youremail.com"
  1. Fork the repo
  2. Make your changes on a topic branch, commit, and push to github and open a pull request.

Once your commits are approved by Travis CI and reviewed by the core team, they will be merged.