summaryrefslogtreecommitdiff
path: root/contrib/remote-reducer/README.md
blob: 74adc66a97964ba5c13458eb009fe175354b791c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Anastasis Remote Reducer

The remote reducer is a simple HTTP service that proxies requests to
``anastasis-reducer``.  It is not meant to be used in production.

## Dependencies

The remote reducer needs python3 and flask.  Flask can be installed via pip:

```
pip3 install flask
```

## Running the remote reducer

```
cd $ANASTASIS_GIT/contrib/remote-reducer
export FLASK_APP=remote_reducer
flask run -p 5000
```