summaryrefslogtreecommitdiffstats
path: root/afb-client
diff options
context:
space:
mode:
authorFulup Ar Foll <fulup@iot.bzh>2015-12-16 17:05:28 +0100
committerFulup Ar Foll <fulup@iot.bzh>2015-12-16 17:05:28 +0100
commitf4ec97c2f12a03fc5e6d29c6226c980b5c00cc8d (patch)
tree1534408b100e9f4e10db44b966ca082581e1d520 /afb-client
parent043898a1d4ab86e275e7e5981382a07eac530587 (diff)
Doc
Diffstat (limited to 'afb-client')
-rw-r--r--afb-client/README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/afb-client/README.md b/afb-client/README.md
index 3893f1f..8216a25 100644
--- a/afb-client/README.md
+++ b/afb-client/README.md
@@ -40,13 +40,16 @@ Install HTML5 development toolchain on your host
gulp watch-dev
http://localhost:3001/opa /* debug mock api base on Backend/RestApi */
-### Test with Application server binder [you may safely run gulp 'watch-dev' + 'afb-daemon' simultaneously]
- export MYWORKSPACE=$HOME/Workspace
- $MYWORKSPACE/afb-daemon/build/afb-daemon --port=1234 --verbose --token=123456789 --rootdir=$MYWORKSPACE/afb-client/dist.dev
- http://localhost:1234/opa
+### Test with Application server binder
+
+ # Start AppFramework Binder
+ export MYWORKSPACE=$HOME/Workspace
+ $MYWORKSPACE/afb-daemon/build/afb-daemon --port=1234 --verbose --token=123456789 --rootdir=$MYWORKSPACE/afb-client/dist.dev
+
+ Point your browser onto: http://localhost:1234/opa
Note:
- - do not forget "/opa" that should match with your config.URLBASE
+ - do not forget '/opa' that should match with your config.URLBASE
- if you change --token=xxxx do not forget to update ./Frontend/pages/HomeModules.js
- Force HTML/OPA reload with F5 after each HTML5/OPA update or new pages may not be loaded.
- When reloading HTML/OPA with F5 do not forget that your initial token wont be accepted anymore. You should either restart to clean existing session or cleanup AJB_session cookie.
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284