update readme.md

This commit is contained in:
boneyard93501 2021-10-04 10:52:54 -05:00
parent edff3861fd
commit dbaab5b9b4

View File

@ -73,21 +73,23 @@ TODO:
## Running A Peer ## Running A Peer
Install the Node dependencies and start the peer: Install the Node dependencies and start the peer in the `` directory:
```bash ```bash
npm i npm i
npm start npm start
``` ```
With the node up and running, we can access the validation and query capabilities with Aqua initiated from any other (client) peer including a browser. The currently exposes two validation methods: Or run with:
* ... and ```bash
* ... nohup node start &
```
with the difference being that ... takes a ....
the corresponding Aqua are: for a long-running daemon.
* ... ad With the node up and running, we can access the validation and query capabilities with Aqua initiated from any other (client) peer including a browser. We can currently call the validation process from [Aqua](./aqua/snapshot.aqua) with two methods: `validate` and `validate_from_url` with the former accepting a json string and the later the url to a json body.
* ... respectively.
Using the command line utility [`fldist`]("https://doc.fluence.dev/docs/knowledge_tools"), for example, we can run:
TBD