Skip to content

Commit e691aee

Browse files
committed
more editing
1 parent 29cafe5 commit e691aee

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

readme.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -122,22 +122,22 @@ A live application URL will be available in the output.
122122

123123
> #### Additional Configuration
124124
>
125-
**Enabling web sockets**
126-
If you're using socket.io, you will need to update the client to connect to the correct port for sockets to work.
125+
> **Enabling web sockets**
126+
> If you're using socket.io, you will need to update the client to connect to the correct port for sockets to work.
127127
>
128-
In `/client/app/components/socket/socket.service` update the socket to connect to port 8000. (with `my-openshift-app` being the deployed name of your app):
128+
> In `/client/app/components/socket/socket.service` update the socket to connect to port 8000. (with `my-openshift-app` being the deployed name of your app):
129129
>
130-
var ioSocket = io.connect('my-openshift-app.com:8000');
130+
> var ioSocket = io.connect('my-openshift-app.com:8000');
131131
>
132132
**oAuth**
133-
If you're using any oAuth strategies, you must set environment variables for your selected oAuth. For example, if we're using Facebook oAuth we would do this :
133+
> If you're using any oAuth strategies, you must set environment variables for your selected oAuth. For example, if we're using Facebook oAuth we would do this :
134134
>
135-
rhc set-env FACEBOOK_ID=id -a my-openshift-app
136-
rhc set-env FACEBOOK_SECRET=secret -a my-openshift-app
135+
> rhc set-env FACEBOOK_ID=id -a my-openshift-app
136+
> rhc set-env FACEBOOK_SECRET=secret -a my-openshift-app
137137
>
138-
After you've set the required environment variables, restart the server:
138+
> After you've set the required environment variables, restart the server:
139139
>
140-
rhc app-restart -a my-openshift-app
140+
> rhc app-restart -a my-openshift-app
141141
142142
**Pushing Updates**
143143

@@ -165,15 +165,15 @@ Your app should now be live. To view it run `heroku open`
165165
> #### Additional Configuration
166166
>
167167
>
168-
**Enabling web sockets**
169-
If you're using socket.io you will need to enable websockets on your app:
168+
> **Enabling web sockets**
169+
> If you're using socket.io you will need to enable websockets on your app:
170170
>
171171
heroku labs:enable websockets
172172
**oAuth**
173-
If you're using any oAuth strategies, you must set environment variables for your selected oAuth. For example, if we're using Facebook oAuth we would do this :
173+
> If you're using any oAuth strategies, you must set environment variables for your selected oAuth. For example, if we're using Facebook oAuth we would do this :
174174
>
175-
heroku config:set FACEBOOK_ID=id
176-
heroku config:set FACEBOOK_SECRET=secret
175+
> heroku config:set FACEBOOK_ID=id
176+
> heroku config:set FACEBOOK_SECRET=secret
177177
178178
**Pushing Updates**
179179

0 commit comments

Comments
 (0)