Upgrade readme

This commit is contained in:
nolash 2021-07-20 17:07:23 +02:00
parent 93c6ed7877
commit 683351211f
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 12 additions and 9 deletions

View File

@ -14,6 +14,9 @@ It capabilities are (unchecked box means feature not yet completed):
* [x] only show transaction with errors
* [x] only show transaction that have not yet completed
- [x] systemd unit / socket service
- [x] sql storage backend
- [ ] filesystem storage backend
## prerequisites
@ -26,18 +29,13 @@ For these examples you need:
- sqlite
- an EVM RPC endpoint
For any python command / executable use:
For any python command / executable used below:
* `-v` or `-vv` to get more information about what is going on
* `--help` for information on how to use and parameters that can be passed
* add `-v` or `-vv` to get more information about what is going on
* use with `--help` for information on how to use and parameters that can be passed
## usage example
### set up database
In terminal window A
## setting up the database backend
Currently there is no more practical way of setting up the database backend :/
@ -51,8 +49,13 @@ pip install --extra-index-url https://pip.grassrootseconomics.net:8433 -r requir
PYTHONPATH=. CHAIND_DOMAIN=eth DATABASE_ENGINE=sqlite python scripts/migrate.py
```
## usage example
### create an empty working directory
In terminal window A
```
d=$(mktemp -d) && cd $d
```