From 54369f64c628e957d6c4a6953f2407d0f3df8564 Mon Sep 17 00:00:00 2001 From: Christopher Baklid Date: Sat, 28 Apr 2018 14:28:35 +0200 Subject: adds dockerfile that uses pipenv (#60) Dockerfile and new deploy flow that builds the container in travis --- scripts/deploy.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 scripts/deploy.py (limited to 'scripts/deploy.py') diff --git a/scripts/deploy.py b/scripts/deploy.py new file mode 100644 index 000000000..04f3e8229 --- /dev/null +++ b/scripts/deploy.py @@ -0,0 +1,8 @@ +import os + +import requests + +url = os.environ.get("AUTODEPLOY_WEBHOOK") +token = os.environ.get("AUTODEPLOY_TOKEN") +result = requests.get(url=url, headers={'token': token}) +print(result.text) -- cgit v1.2.3