Add newlines

This commit is contained in:
conache 2024-08-08 14:53:15 +03:00
parent 9198fd4fb1
commit a4a708c7d4
No known key found for this signature in database

View File

@ -18,12 +18,14 @@ A complete working example is provided in the `docker-compose.yml` file.
1. **Clone the Repository** 1. **Clone the Repository**
2. **Copy and Populate Configuration** 2. **Copy and Populate Configuration**
Copy the example configuration file and populate it with your variables: Copy the example configuration file and populate it with your variables:
```sh ```sh
cp config.example.json config.json cp config.example.json config.json
``` ```
3. **Initialize Worker** 3. **Initialize Worker**
Run the following commands from the project's root directory to initialize the worker: Run the following commands from the project's root directory to initialize the worker:
```sh ```sh
chmod +x init.docker chmod +x init.docker
@ -34,9 +36,11 @@ A complete working example is provided in the `docker-compose.yml` file.
- Export the needed variables from the created account to be used by the worker node, bundle them with your provided `config.json`, and pass them to the node as environment variables. - Export the needed variables from the created account to be used by the worker node, bundle them with your provided `config.json`, and pass them to the node as environment variables.
4. **Faucet Your Worker Node** 4. **Faucet Your Worker Node**
You can find the offchain worker node's address in `./worker-data/env_file` under `ALLORA_OFFCHAIN_ACCOUNT_ADDRESS`. Request some tokens from the faucet to register your worker. You can find the offchain worker node's address in `./worker-data/env_file` under `ALLORA_OFFCHAIN_ACCOUNT_ADDRESS`. Request some tokens from the faucet to register your worker.
5. **Start the Services** 5. **Start the Services**
Run the following command to start the worker node, inference, and updater nodes: Run the following command to start the worker node, inference, and updater nodes:
```sh ```sh
docker compose up --build docker compose up --build
@ -57,6 +61,7 @@ This setup allows you to develop your model without the need to bring up the hea
Wait for the initial data load. Wait for the initial data load.
2. Send requests to the inference model. For example, request ETH price inferences: 2. Send requests to the inference model. For example, request ETH price inferences:
```sh ```sh
curl http://127.0.0.1:8000/inference/ETH curl http://127.0.0.1:8000/inference/ETH
``` ```
@ -66,6 +71,7 @@ This setup allows you to develop your model without the need to bring up the hea
``` ```
3. Update the node's internal state (download pricing data, train, and update the model): 3. Update the node's internal state (download pricing data, train, and update the model):
```sh ```sh
curl http://127.0.0.1:8000/update curl http://127.0.0.1:8000/update
``` ```