diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..322d70d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.10-alpine + +WORKDIR /app + +COPY src/requirements.txt requirements.txt +RUN pip install --no-cache-dir -r requirements.txt + +COPY src/ /app + +CMD ["python", "main.py"] \ No newline at end of file diff --git a/README.md b/README.md index e69de29..af299b2 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,13 @@ +# Pair Monitor +Companion piece to [matrix-alerts](https://git.juggalol.com/agatha/matrix-alerts). It will all come together +in a single repo at some point, but I have a lot of refactoring to do on everything. I split up the +[mbot](https://git.juggalol.com/agatha/mbot) code into smaller services but haven't refactored _anything_ yet. + +## Configuration Example +``` +{ + "infura_url": "", + "pool_address": "0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f", + "etherscan_key": "" +} +``` \ No newline at end of file