Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mynij-proxy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mynij
mynij-proxy
Commits
d861ba18
Commit
d861ba18
authored
Jul 30, 2021
by
Stefane Fermigier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: deps
parent
119133c3
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
147 additions
and
100 deletions
+147
-100
Makefile
Makefile
+7
-1
README.md
README.md
+1
-1
poetry.lock
poetry.lock
+137
-96
pyproject.toml
pyproject.toml
+2
-2
No files found.
Makefile
View file @
d861ba18
...
...
@@ -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
#
...
...
README.md
View file @
d861ba18
...
...
@@ -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).
...
...
poetry.lock
View file @
d861ba18
This diff is collapsed.
Click to expand it.
pyproject.toml
View file @
d861ba18
...
...
@@ -12,9 +12,9 @@ python = "^3.9"
httpx
=
"^0.18.1"
gunicorn
=
"^20.1.0"
uvicorn
=
"^0.1
3.
4"
uvicorn
=
"^0.14"
uvloop
=
"^0.15.2"
starlette
=
"^0.1
4.2
"
starlette
=
"^0.1
6
"
httptools
=
"*"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment