From 96adaac01afbc2f63c6d0444aad13011fd12a4d9 Mon Sep 17 00:00:00 2001 From: Eden Kirin Date: Sun, 23 Apr 2023 10:06:25 +0200 Subject: [PATCH] Update readme --- javascript/README.md | 3 +-- python/README.md | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/javascript/README.md b/javascript/README.md index f471ef0..71eceed 100644 --- a/javascript/README.md +++ b/javascript/README.md @@ -10,8 +10,7 @@ Check `demo.js` for usage example. Edit `demo.js` and configure FairHopper Game host settings: ```javascript -const FAIRHOPPER_HOST = "http://127.0.0.1"; -const FAIRHOPPER_PORT = 8010; +const FAIRHOPPER_HOST = "http://127.0.0.1:8010"; ``` Run example using node: diff --git a/python/README.md b/python/README.md index a83ca95..645d585 100644 --- a/python/README.md +++ b/python/README.md @@ -24,8 +24,7 @@ Check `demo.py` for usage example. Edit `demo.py` and configure FairHopper Game host settings: ```python -FAIRHOPPER_HOST = "http://127.0.0.1" -FAIRHOPPER_PORT = 8010 +FAIRHOPPER_HOST = "http://127.0.0.1:8010" ``` Activate environment and run example: