GithubHelp home page GithubHelp logo

dotcloud-cli's Introduction

dotCloud CLI

This is the dotCloud command line interface.

What's New

This version of CLI is designed to work with the application directory linked to thremote dotCloud application.

This allows you to avoid typing the same application names multiple times, and reduce the possiblity of making typos and overwrite wrong applications by repeating the command line history.

# New CLI 
> dotcloud push
> dotcloud info
> dotcloud run www bash

# Old CLI
> dotcloud push myapp .
> dotcloud info myapp
> dotcloud run myapp.www bash

The command line executable is installed as dotcloud.

Setup

First, you have to configure your CLI.

> dotcloud setup
Dotcloud Username: your-user-name
Password: **********

You're asked to provide your username and password for dotCloud, to register the new CLI client as a dotCloud REST API consumer. You can also use email, instead of your username.

The CLI won't save this credentials locally - instead, it will save the OAuth2 access token in the local disk. Once the setup is complete, you can run the check command to see if everything is configured correctly.

> dotcloud check
--> Checking the authentication status
OK: Client is authenticated as <your-username>

If this fails, try removing the directory ~/.dotcloud_cli and start over from the setup.

Working with your application

> cd ~/dev
> mkdir myapp
> (write some code)

Create

Once you've done writing your awesome application, run the create command:

> dotcloud create myapp
--> Creating a new application called "myapp"
Application "myapp" created.
Connect the current directory to "myapp"? [Yn]: y
--> Connecting with the application "myapp"
--> Connected.

As you see, the CLI asks you if you want to connect the current working directory to the remote application. This allows you to omit typing the application name from now on.

Running commands

To push the code to the dotCloud platform, simply type:

> dotcloud push

and it will upload the code from the current directory to the application. You can see the currently connected application by typing:

> dotcloud app
myapp

You can see the list of commands by running dotcloud -h.

If you typed n when asked to connect the current directory, the CLI can't find the application name for the commands. You can specify the application name in such case, using the --application (or -A for short) option:

> dotcloud -A myapp info

You can also use this option when you want to run commands against the application that you don't have the working directory for.

Connect

Similarly, if you already have a working directory and a dotCloud remote application and want to connect them together, instead of creating a new application, run the connect command:

> cd ~/dev/myapp
> dotcloud connect myapp

It will link your current working directory with the (existing) dotCloud application myapp.

Contributing

If you've found a bug or have a feature request for the new CLI, the best way to send feedbacks is to open it in the github issues list.

If you really want to contribute your code by submitting patches (that is awesome!), fork a project on github, and send us a pull request. Note that by forking and sending pull requests, you agree to assign the copyright to dotCloud Inc.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.