Skip to content

Commit 99e9638

Browse files
feat: changed default port (8081 to 6789) (#36)
Signed-off-by: Magnaibayar <magnaibayar.pda@gmail.com> Signed-off-by: Magnaibayar <magnaibayar.pda@gmail.com>
1 parent 8f3a37a commit 99e9638

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export KEPLOY_APP_DELAY=5 # time delay before starting testruns(in seconds)
5555
export KEPLOY_APP_TIMEOUT=100 # should be number
5656
# export KEPLOY_APP_FILTER={"urlRegex":"*"} # should be json not to capture for certain url's
5757
58-
export KEPLOY_SERVER_URL="http://localhost:8081/api" # self hosted keploy running server
58+
export KEPLOY_SERVER_URL="http://localhost:6789/api" # self hosted keploy running server
5959
# export KEPLOY_SERVER_LICENSE="XXX-XXX-XXX" # hosted keploy server api key
6060
```
6161
### KEPLOY_MODE

src/keploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default class Keploy {
8080
}
8181

8282
validateServerConfig({
83-
url = process.env.KEPLOY_SERVER_URL || "http://localhost:8081/api",
83+
url = process.env.KEPLOY_SERVER_URL || "http://localhost:6789/api",
8484
licenseKey = process.env.KEPLOY_LICENSE_KEY || "",
8585
}) {
8686
return { url, licenseKey };

0 commit comments

Comments
 (0)