From 9f5459062d2402801a0fa3ba1bdcb8576be060c0 Mon Sep 17 00:00:00 2001 From: black-hope Date: Wed, 24 Jun 2015 12:32:34 +0530 Subject: [PATCH] Update README.md I faced a little issue with README.md As it didn't reinforce to use the same application name in `manifest.yml` with which we are pushing the code. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ec9b3efe..191f908f 100755 --- a/README.md +++ b/README.md @@ -10,17 +10,17 @@ 2. Download and install the [Cloud-foundry CLI](https://github.com/cloudfoundry/cli#downloads) tools -3. Edit the `manifest.yml` file and change the `` to something unique. +3. Edit the `manifest.yml` file and change the application name by replacing `` with your top coder handle. eg: `foo-fun-watson` ```none applications: - services: - visual-recognition-service - name: + name: -fun-watson command: node app.js path: . memory: 128M ``` - The name you use will determinate your application url initially, e.g. `.mybluemix.net`. + The name you use will determinate your application url initially, e.g. `foo-fun-watson.mybluemix.net`. 4. Connect to Bluemix in the command line tool ```sh @@ -35,7 +35,7 @@ applications: 6. Push it live! ```sh - $ cf push -fun-watson + $ cf push ``` See the full [Getting Started](http://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/doc/getting_started/) documentation for more details, including code snippets and references.