Commit d861ba18 authored by Stefane Fermigier's avatar Stefane Fermigier

chore: deps

parent 119133c3
......@@ -12,7 +12,13 @@ all: test lint
#
.PHONY:
run:
gunicorn -b localhost:3000 --pid server.pid -k uvicorn.workers.UvicornWorker -w 4 mynij_proxy:app
gunicorn -b localhost:3000 \
--pid server.pid \
--keyfile ssl/httpd.key \
--certfile ssl/httpd.crt \
-k uvicorn.workers.UvicornWorker \
-w 4 \
mynij_proxy:app
#
......
......@@ -4,7 +4,7 @@ Mynij Proxy
A proxy that adds CORS headers to GET request for use by the Mynij
search engine.
Uses Starlette as it's ASGI framework, and HTTPX as the HTTP client.
Uses Starlette as its ASGI framework, and HTTPX as the HTTP client.
(We may switch to aiohttp.client instead of httpx later).
......
This diff is collapsed.
......@@ -12,9 +12,9 @@ python = "^3.9"
httpx = "^0.18.1"
gunicorn = "^20.1.0"
uvicorn = "^0.13.4"
uvicorn = "^0.14"
uvloop = "^0.15.2"
starlette = "^0.14.2"
starlette = "^0.16"
httptools = "*"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment