Chore: Started using gunicorn

This commit is contained in:
2023-08-06 09:09:02 +05:30
parent 9ad411af65
commit f0cbe4a7de
6 changed files with 133 additions and 8 deletions

View File

@ -6,22 +6,23 @@ authors = ["tanshu <git@tanshu.com>"]
[tool.poetry.dependencies]
python = "^3.11"
uvicorn = {extras = ["standard"], version = "^0.21.1"}
fastapi = {extras = ["all"], version = "^0.100.0"}
uvicorn = {extras = ["standard"], version = "^0.23.2"}
fastapi = {extras = ["all"], version = "^0.101.0"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
psycopg2-binary = "^2.9.5"
SQLAlchemy = "^2.0.7"
psycopg2-binary = "^2.9.7"
SQLAlchemy = "^2.0.19"
python-multipart = "^0.0.6"
PyJWT = "^2.8.0"
alembic = "^1.11.1"
alembic = "^1.11.2"
itsdangerous = "^2.1.2"
python-dotenv = "^1.0.0"
pydantic = {extras = ["dotenv"], version = "^2.0.3"}
pydantic = {extras = ["dotenv"], version = "^2.1.1"}
starlette = "^0.27.0"
pandas = "^2.0.0"
arq = "^0.25.0"
openpyxl = "^3.1.2"
gunicorn = "^21.2.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"