Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions services/web/server/docker/boot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ if [ "${SC_BOOT_MODE}" = "debug" ]; then
exec python -m debugpy --listen 0.0.0.0:"${WEBSERVER_REMOTE_DEBUGGING_PORT}" -m gunicorn simcore_service_webserver.cli:app_factory \
--log-level="${SERVER_LOG_LEVEL}" \
--bind 0.0.0.0:8080 \
--worker-class aiohttp.GunicornWebWorker \
--worker-class aiohttp.GunicornUVLoopWebWorker \
--workers="${WEBSERVER_GUNICORN_WORKERS:-1}" \
--name="webserver_$(hostname)_$(date +'%Y-%m-%d_%T')_$$" \
--access-logfile='-' \
Expand All @@ -70,7 +70,7 @@ else
exec gunicorn simcore_service_webserver.cli:app_factory \
--log-level="${SERVER_LOG_LEVEL}" \
--bind 0.0.0.0:8080 \
--worker-class aiohttp.GunicornWebWorker \
--worker-class aiohttp.GunicornUVLoopWebWorker \
--workers="${WEBSERVER_GUNICORN_WORKERS:-1}" \
--name="webserver_$(hostname)_$(date +'%Y-%m-%d_%T')_$$" \
--access-logfile='-' \
Expand Down
1 change: 1 addition & 0 deletions services/web/server/requirements/_base.in
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ redis
swagger-ui-py
tenacity
twilio
uvloop
2 changes: 2 additions & 0 deletions services/web/server/requirements/_base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1021,6 +1021,8 @@ urllib3==2.2.3
# -c requirements/../../../../packages/simcore-sdk/requirements/../../../requirements/constraints.txt
# -c requirements/../../../../requirements/constraints.txt
# requests
uvloop==0.21.0
# via -r requirements/_base.in
werkzeug==2.1.2
# via -r requirements/../../../../packages/service-library/requirements/_aiohttp.in
wrapt==1.16.0
Expand Down
4 changes: 3 additions & 1 deletion services/web/server/requirements/_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,9 @@ uvicorn==0.34.0
# fastapi
# fastapi-cli
uvloop==0.21.0
# via uvicorn
# via
# -c requirements/_base.txt
# uvicorn
watchfiles==1.0.4
# via uvicorn
websockets==15.0
Expand Down
Loading