File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ pip install -U -r requirements.txt -r dev-requirements.txt
1313### Git hooks and linters
1414
1515commited code should be linted and formatted
16+
1617``` sh
1718# format
1819ruff format
@@ -23,6 +24,7 @@ ruff check --fix
2324```
2425
2526enforce this check with a pre commit hook
27+
2628``` sh
2729pre-commit install
2830```
Original file line number Diff line number Diff line change @@ -8,16 +8,19 @@ A python tool to observe
88[ ` flare-systems-deployment ` ] ( https://github.com/flare-foundation/flare-systems-deployment )
99and
1010[ ` fdc-suite-deployment ` ] ( https://github.com/flare-foundation/fdc-suite-deployment ) .
11- It does so without keeping any state. This allows it to only require the identity address of
12- the observed entity and an observer node rpc. It can send error messages to:
11+ It does so without keeping any state. This allows it to only require the
12+ identity address of the observed entity and an observer node rpc. It can send
13+ error messages to:
14+
1315- discord via webhook
1416- slack via webhook
1517- telegram bot via sendMessage method
1618- generic rest api via http post method
1719
1820## Setting up and using fsp-observer
1921
20- The easiest way to run is via docker. The only required env variables are ` RPC_BASE_URL ` and ` IDENTITY_ADDRESS ` . Others can be set as desired.
22+ The easiest way to run is via docker. The only required env variables are
23+ ` RPC_BASE_URL ` and ` IDENTITY_ADDRESS ` . Others can be set as desired.
2124
2225``` bash
2326docker run \
@@ -32,6 +35,7 @@ docker run \
3235```
3336
3437Alternatively python can be used to run:
38+
3539``` bash
3640python -m venv venv
3741pip install -r requirements.txt
You can’t perform that action at this time.
0 commit comments