Skip to content

Commit

Permalink
updating sqla dep; and expaning config binds
Browse files Browse the repository at this point in the history
  • Loading branch information
havok2063 committed Sep 18, 2023
1 parent 3895a0a commit 44778cc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 52 deletions.
61 changes: 11 additions & 50 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ sdss-tree = "^4.0.0"
sdss-access = "^3.0.0"
sdsstools = "^1.0.0"
Sphinx = {version="^3.0.0", optional=true}
fastapi = "^0.97.0"
fastapi = "^0.99.0"
uvicorn = "^0.22.0"
gunicorn = "^20.1.0"
astropy = "^5.2.0"
Expand All @@ -45,6 +45,7 @@ python-multipart = "^0.0.5"
httpx = "^0.24.0"
astroquery = "^0.4.6"
pandas = "^1.5.3"
SQLAlchemy = "^1.4.35"


[tool.poetry.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion python/valis/wsgi_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import os

socket_dir = os.getenv("VALIS_SOCKET_DIR", '/tmp/valis')
bind = f"unix:{socket_dir}/valis.sock"
bind = [f"unix:{socket_dir}/valis.sock", "0.0.0.0:8000"]
workers = 4
worker_class = "uvicorn.workers.UvicornWorker"
daemon = True
Expand Down

0 comments on commit 44778cc

Please sign in to comment.