aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-05-26 12:54:49 +0200
committerGravatar Christopher Baklid <[email protected]>2018-05-26 12:54:49 +0200
commitea2141dc6fd7284e6f9fa04ee638460286e3b09c (patch)
tree218d332be80bd2f4e177b0d9e4725dd27dec2034 /Pipfile
parentlint (diff)
simplify threads and use local thread variables to manage user websocket connections
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Pipfile b/Pipfile
index 5417ae3..c576744 100644
--- a/Pipfile
+++ b/Pipfile
@@ -21,7 +21,7 @@ python_version = "3.6"
[scripts]
lint = "flake8"
snekbox = "python snekbox.py"
-snekweb = "gunicorn -w 1 -b 0.0.0.0:5000 -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker snekweb:app"
+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"