Skip to content

Commit 95d960c

Browse files
committed
Update README.md
1 parent 17438f9 commit 95d960c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ From the command line, navigate to the directory of the app and run the followin
2626
1. Login to Bluemix.
2727

2828
| *usage:* | `$ cf login [-a API_URL] [-o ORG] [-s SPACE]`|
29-
|------------|----------------------------------------------|
29+
|------------|:---------------------------------------------|
3030
| *example:* | `$ cf login -a https://api.ng.bluemix.net` |
3131

3232
2. Create an instance of the PostgreSQL service, giving it a unique name in the last argument. The application is written to assume that the service instance name will begin with "postgresql".
3333

3434
| *usage:* | `$ cf create-service SERVICE PLAN SERVICE_INSTANCE`|
35-
|------------|----------------------------------------------------|
35+
|------------|:---------------------------------------------------|
3636
| *example:* | `$ cf create-service postgresql 100 postgresql_JPU`|
3737

38-
3. From the directory you placed your WAR file in, push the app with the -p flag to specify the WAR file path and the --no-start option so we can bind our required service before starting our app. Give your app a unique app name to be used as its hostname; for instance, if you replace <YOUR-NAME> with the username 'user1' then the example below would be hosted at http://jpu-user1.ng.bluemix.net.
38+
3. From the directory you placed your WAR file in, push the app with the -p flag to specify the WAR file path and the --no-start option so we can bind our required service before starting our app. Give your app a unique app name to be used as its hostname; for instance, if you replace `<YOUR-NAME>` with 'user1' then the example below would be hosted at http://jpu-user1.ng.bluemix.net.
3939

4040
| *usage:* | `$ cf push APP [--no-manifest] [--no-start] [-p PATH]` |
4141
|------------|:----------------------------------------------------------------|
@@ -46,13 +46,13 @@ From the command line, navigate to the directory of the app and run the followin
4646
4. Bind the postgreSQL service instance to the new app
4747

4848
| *usage:* | `$ cf bind-service APP SERVICE_INSTANCE`|
49-
|------------|-----------------------------------------|
49+
|------------|:----------------------------------------|
5050
| *example:* | `$ cf bind-service jpu-<YOUR-NAME> postgresql_JPU`|
5151

5252
5. Start the app
5353

5454
| *usage:* | `$ cf start APP`|
55-
|------------|-----------------|
55+
|------------|:----------------|
5656
| *example:* | `$ cf start jpu-<YOUR-NAME>`|
5757

5858
## Import the App into Eclipse ##

0 commit comments

Comments
 (0)