Skip to content

Commit

Permalink
Update local dev instructions in readme (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
quietbits authored Jan 12, 2024
1 parent 03ccf5d commit 0f6a298
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ considered compromised.** If you want to test services on mainnet with this
tool, make sure to create a new account and fund it with the minimum assets
required.

Note, that dy default base fee is 100 stroops. That may not be enough for mainnet application, and base fee can be changed via `REACT_APP_BASE_FEE` environment variable
Note, that dy default base fee is 100 stroops. That may not be enough for
mainnet application, and base fee can be changed via `REACT_APP_BASE_FEE`
environment variable

## Getting A Test Account Up and Running

Expand Down Expand Up @@ -158,18 +160,36 @@ window._env_ = {
};
```

and run:
Build `shared` files that are consumed by both the client and server.

```bash
yarn build:shared
```

And run the client:

```bash
yarn start:client
```

To build the app for production, run:
To build the client app for production, run:

```bash
yarn build:client
```

To run the server locally:

```bash
yarn start:server
```

And build the server for production:

```bash
yarn build:server
```

### Docker

If you want to run the demo wallet on testnet, building the project is easy.
Expand Down

0 comments on commit 0f6a298

Please sign in to comment.