aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-06-05 20:55:56 +0200
committerGravatar Christopher Baklid <[email protected]>2018-06-05 20:55:56 +0200
commit2eee1d50fd2b9ad1e938a3b2186a6c1874f30e42 (patch)
tree55cd90979cf25f52808be25de50d9a8221ebcaa9 /Pipfile
parentUpdate README.md (diff)
CI
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Pipfile b/Pipfile
index 1560ed3..5a17cda 100644
--- a/Pipfile
+++ b/Pipfile
@@ -25,9 +25,13 @@ python_version = "3.6"
lint = "flake8"
test = "py.test tests --cov . --cov-report term-missing -v"
report = "py.test tests --cov . --cov-report=html"
+
snekbox = "python snekbox.py"
snekweb = "gunicorn -w 2 -b 0.0.0.0:5000 --log-level debug -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker snekweb:app"
+
buildbox = "docker build -t pythondiscord/snekbox:latest -f docker/Dockerfile ."
-buildweb = "docker build -t pythondiscord/snekboxweb:latest -f docker/Dockerfile.webapp ."
pushbox = "docker push pythondiscord/snekbox:latest"
+pushboxbase = "docker push pythondiscord/snekbox-base:latest"
+
+buildweb = "docker build -t pythondiscord/snekboxweb:latest -f docker/Dockerfile.webapp ."
pushweb = "docker push pythondiscord/snekboxweb:latest"