Skip to content

Commit 62c9b41

Browse files
improve README
1 parent 5b55fe8 commit 62c9b41

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![npm](https://img.shields.io/npm/v/testingbot-tunnel-launcher.svg?maxAge=2592000)](https://www.npmjs.com/package/testingbot-tunnel-launcher)
44
[![Tests](https://github.com/testingbot/testingbot-tunnel-launcher/actions/workflows/test.yml/badge.svg)](https://github.com/testingbot/testingbot-tunnel-launcher/actions/workflows/test.yml)
55

6-
A library to download and launch [TestingBot Tunnel](https://testingbot.com/support/other/tunnel).
6+
A library to download and launch [TestingBot Tunnel](https://testingbot.com/support/tunnel).
77

88
## Installation
99

@@ -20,8 +20,8 @@ npm install testingbot-tunnel-launcher
2020
const testingbotTunnel = require('testingbot-tunnel-launcher');
2121

2222
testingbotTunnel({
23-
apiKey: 'key',
24-
apiSecret: 'secret',
23+
apiKey: process.env.TB_KEY,
24+
apiSecret: process.env.TB_SECRET,
2525
verbose: true
2626
}, function (err, tunnel) {
2727
if (err) {
@@ -86,7 +86,7 @@ testingbotTunnel(options, function(err, tunnel) {
8686

8787
You can pass the [TestingBot credentials](https://testingbot.com/members) as `apiKey` and `apiSecret` in the options.
8888

89-
You can also create a `.testingbot` file in your `$HOME` directory, with `apiKey:apiSecret` as contents.
89+
You can also create a `~/.testingbot` file in your `$HOME` directory, with `apiKey:apiSecret` as contents.
9090

9191

9292
## Testing

0 commit comments

Comments
 (0)