Specter Desktop plugin to add time series charts for visualizing wallet balances.
To run:
$ git clone https://github.com/cryptoadvance/specterext-stacktrack.git
$ cd specterext-stacktrack
$ pip3 install virtualenv
$ virtualenv --python=python3 .env
# or do this instead to avoid 3.10, as it isn't yet supported
# $ virtualenv --python=python3.9 .env
$ source .env/bin/activate
$ pip3 install -r requirements.txt
$ pip3 install -e .
$ python3 setup.py install
$ pip3 install cryptoadvance.specter
$ python3 -m cryptoadvance.specter server --config DevelopmentConfig --debug
Then point your browser to http://localhost:25441 and choose Services → StackTrack.
Running unit tests:
$ pytest