From bffc7002c1c197d464ace059431e872388b34080 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Sun, 17 Feb 2019 12:15:27 +0100 Subject: [PATCH] rename {main -> matrix_webhook}.py --- Dockerfile | 4 ++-- README.md | 2 +- main.py => matrix_webhook.py | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename main.py => matrix_webhook.py (100%) diff --git a/Dockerfile b/Dockerfile index bec059c..506a076 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,6 @@ EXPOSE 4785 RUN pip3 install --no-cache-dir \ matrix-client -ADD main.py / +ADD matrix_webhook.py / -CMD /main.py +CMD /matrix_webhook.py diff --git a/README.md b/README.md index ffd1543..7e306f5 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Set the following environment variables: ``` pip3 install --user matrix-client -./main.py +./matrix_webhook.py ``` ## Prod diff --git a/main.py b/matrix_webhook.py similarity index 100% rename from main.py rename to matrix_webhook.py