You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,11 +42,12 @@ Option 2 (deploy from your local machine):
42
42
1. Clone or download this repo onto your machine.
43
43
2. Open a terminal prompt to the directory of your application.
44
44
3. If you don't have a Bluemix account, [create a free one here](https://console.ng.bluemix.net/registration/).
45
-
4. Set your Cloud Foundry CLI tool's API endpoint to Bluemix: `cf api https://api.ng.bluemix.net `
46
-
5. Login to Bluemix via the command line: `cf login`
47
-
6. Create the instance of Compose for MongoDB on Bluemix: `cf create-service compose-for-mongodb Standard mongodb`
48
-
7. Push your app to bluemix with `cf push`
49
-
8. Done, the app should be looking like:<imgsrc="ReadME-Images/live-app.png">
45
+
4. Set your Cloud Foundry CLI tool's API endpoint to Bluemix: `bx api https://api.ng.bluemix.net `
46
+
5. Login to Bluemix via the command line: `bx login`
47
+
6. Target your Bluemix ORG and SPACE `bx target -o ORG -s SPACE`
48
+
7. Create the instance of Compose for MongoDB on Bluemix: `bx cf create-service compose-for-mongodb Standard mongodb`
49
+
8. Push your app to bluemix with `bx cf push`
50
+
9. Done, the app should be looking like:<imgsrc="ReadME-Images/live-app.png">
50
51
51
52
52
53
@@ -82,13 +83,13 @@ Please create a pull request with your desired changes.
82
83
The primary source of debugging information for your Bluemix app is the logs. To see them, run the following command using the Cloud Foundry CLI:
83
84
84
85
```
85
-
$ cf logs <application-name> --recent
86
+
$ bx cf logs <application-name> --recent
86
87
```
87
88
88
89
If you are not sure what your application name is, use this command to print your application name(s):
89
90
90
91
```
91
-
$ cf apps
92
+
$ bx cf apps
92
93
```
93
94
94
95
For more detailed information on troubleshooting your application, see the [Troubleshooting section](https://www.ng.bluemix.net/docs/troubleshoot/tr.html) in the Bluemix documentation.
0 commit comments