summaryrefslogtreecommitdiff
path: root/contrib/remote-reducer/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/remote-reducer/README.md')
-rw-r--r--contrib/remote-reducer/README.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/contrib/remote-reducer/README.md b/contrib/remote-reducer/README.md
new file mode 100644
index 0000000..74adc66
--- /dev/null
+++ b/contrib/remote-reducer/README.md
@@ -0,0 +1,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
+```