2022-02-02 13:00:33 +00:00
|
|
|
# WalletConnect React App
|
|
|
|
|
2022-02-02 13:02:37 +00:00
|
|
|
## Getting Started
|
|
|
|
|
|
|
|
Install the app's dependencies:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
yarn
|
|
|
|
```
|
|
|
|
|
|
|
|
Set up your local environment variables by copying the example into your own `.env.local` file:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cp .env.local.example .env.local
|
|
|
|
```
|
|
|
|
|
2022-02-02 13:00:33 +00:00
|
|
|
## Develop
|
|
|
|
|
|
|
|
```bash
|
|
|
|
yarn start
|
|
|
|
```
|
|
|
|
|
|
|
|
## Test
|
|
|
|
|
|
|
|
```bash
|
|
|
|
yarn test
|
|
|
|
```
|
|
|
|
|
|
|
|
## Build
|
|
|
|
|
|
|
|
```bash
|
|
|
|
yarn build
|
|
|
|
```
|