Skip to content

Commit

Permalink
docs: document the env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtechsimetka committed Oct 10, 2023
1 parent 8128c7d commit 80bbd5d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
PUBLIC_BLOCKCHAIN='gnosis'
PUBLIC_WAKU='production'
PUBLIC_BLOCKCHAIN=gnosis
PUBLIC_WAKU=production
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,27 @@ pnpm build

You can preview the production build with `pnpm preview`.

## Config

Use env variables to specify:

```bash
# Which waku node to connect to
# Options:
# local single waku node running in docker
# production waku nodes used for production deployment
# Defaults to
PUBLIC_WAKU='production'

# Which blockchain to connect to
# Options:
# local local chain running in docker
# chiado chiado testnet
# gnosis gnosis mainnet
# Defaults to
PUBLIC_BLOCKCHAIN='gnosis'
```

## CLI

There is a built-in command line tool for making development easier.
Expand Down

0 comments on commit 80bbd5d

Please sign in to comment.