Skip to content

Commit

Permalink
docs: fix README lint, env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Sciator committed Aug 21, 2023
1 parent 0d57f3d commit d8b3f92
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,18 @@ export INFLUXDB_TOKEN="<token>"

### powershell

```console
set INFLUXDB_URL=<url>
set INFLUXDB_DATABASE=<database>
set INFLUXDB_TOKEN=<token>
```powershell
$env:INFLUXDB_URL = "<url>"
$env:INFLUXDB_DATABASE = "<database>"
$env:INFLUXDB_TOKEN = "<token>"
```

### cmd

```powershell
$env:INFLUXDB_URL "<url>"
$env:INFLUXDB_DATABASE "<database>"
$env:INFLUXDB_TOKEN "<token>"
```console
set INFLUXDB_URL=<url>
set INFLUXDB_DATABASE=<database>
set INFLUXDB_TOKEN=<token>
```

</details>
Expand Down Expand Up @@ -155,7 +155,6 @@ for await (const row of queryPointsResult) {
}
```


## Examples

For more advanced usage, see [examples](https://github.com/InfluxCommunity/influxdb3-js/blob/HEAD/examples/README.md).
Expand Down

0 comments on commit d8b3f92

Please sign in to comment.