34 lines
342 B
Markdown
34 lines
342 B
Markdown
|
# WalletConnect React App
|
||
|
|
||
|
## 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
|
||
|
```
|
||
|
|
||
|
## Develop
|
||
|
|
||
|
```bash
|
||
|
yarn start
|
||
|
```
|
||
|
|
||
|
## Test
|
||
|
|
||
|
```bash
|
||
|
yarn test
|
||
|
```
|
||
|
|
||
|
## Build
|
||
|
|
||
|
```bash
|
||
|
yarn build
|
||
|
```
|