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
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -185,6 +185,7 @@ You should look for the map, auth, mediator, player and room servers. Confirm if
185
185
186
186
Now that you have successfully deployed your own app in the Bluemix Kubernetes Container Service, you can access it via its IP address and assigned Port.
187
187
> https://169.xxx.xxx.xxx:30443/
188
+
> You will need to use https on port 30443.
188
189
189
190
* You will see the homepage of your app on that address.
190
191

@@ -193,6 +194,11 @@ Now that you have successfully deployed your own app in the Bluemix Kubernetes C
193
194
* The app will prompt you to enter your desired **Username** and **Favorite Color**
194
195

195
196
***Congratulations! You now have your own GameOn app running on Bluemix! You may now wish to explore on creating new rooms and adding social logins.**
197
+
* Commands in GameOn app:
198
+
*`/help` - lists all commands available
199
+
*`/sos` - go back the the first room
200
+
*`/exits` - lists all available exits
201
+
*`/go <N,S,E,W>` - go to the room in that direction
196
202
197
203
# 5.1 Add Social Logins
198
204
You may want to add social logins so you and your friends can explore the rooms together.
@@ -251,11 +257,11 @@ You will need to add this in the environment variables on the yaml files of your
251
257
252
258
You can build your own rooms by following [**this guide**](https://gameontext.gitbooks.io/gameon-gitbook/content/walkthroughs/createRoom.html) by the GameOn team. They have some sample rooms written in Java, Swift, Go, and more.
253
259
254
-
In this journey, you will deploy the sample rooms written in **Java** and **Swift**. You will deploy it in the same cluster as your GameOn App.
260
+
In this journey, you will deploy the **[sample room written in Java](https://github.com/gameontext/sample-room-java)**. You will deploy it in the same cluster as your GameOn App.
255
261
256
262
You can create these rooms by executing
257
263
```bash
258
-
$ kubectl create -f sample-rooms
264
+
$ kubectl create -f sample-room
259
265
```
260
266
261
267
To register the deployed rooms in the cluster, you will need to use the UI of your app.
@@ -266,9 +272,10 @@ To register the deployed rooms in the cluster, you will need to use the UI of yo
266
272
> Note: In the samples, the Java Room uses port 9080, while the Swift room uses port 8080.
267
273
268
274

269
-

270
-
* You now have successfully registered your rooms in your Map. You can go to them directly by typing these commands in the UI: `/listmyrooms` and use the id in `/teleport <id-of-the-room>`
271
-
You can learn more about the details of registering a room [**here**](https://gameontext.gitbooks.io/gameon-gitbook/content/walkthroughs/registerRoom.html).
275
+
* You now have successfully registered your room in your Map. You can go to it directly by typing these commands in the UI: `/listmyrooms` and use the id in `/teleport <id-of-the-room>`. [Explore the game](#5-explore-your-gameon-app).
276
+
277
+
* You can learn more about the details of registering a room [**here**](https://gameontext.gitbooks.io/gameon-gitbook/content/walkthroughs/registerRoom.html).
278
+
* You can build your own room by following [GameOn's guide](https://gameontext.gitbooks.io/gameon-gitbook/content/walkthroughs/createRoom.html)
0 commit comments