Free and open source ticket system written in python

add gunicorn and remove default server

+35 -6
+1 -4
Dockerfile
··· 22 22 23 23 COPY --from=builder ${VIRTUAL_ENV} ${VIRTUAL_ENV} 24 24 COPY . /usr/src/app 25 - WORKDIR /usr/src/app 26 - 27 - ENTRYPOINT ["python3"] 28 - CMD ["manage.py", "runserver", "0.0.0.0:8000"] 25 + WORKDIR /usr/src/app
+1 -1
paw/__init__.py
··· 1 1 from django import get_version 2 2 3 - VERSION = (0, 5, 7, "final", 0) 3 + VERSION = (0, 5, 8, "final", 0) 4 4 5 5 __version__ = get_version(VERSION)
+32 -1
poetry.lock
··· 211 211 tool = ["click (>=6.0.0)"] 212 212 213 213 [[package]] 214 + name = "gunicorn" 215 + version = "21.2.0" 216 + description = "WSGI HTTP Server for UNIX" 217 + optional = false 218 + python-versions = ">=3.5" 219 + files = [ 220 + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, 221 + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, 222 + ] 223 + 224 + [package.dependencies] 225 + packaging = "*" 226 + 227 + [package.extras] 228 + eventlet = ["eventlet (>=0.24.1)"] 229 + gevent = ["gevent (>=1.4.0)"] 230 + setproctitle = ["setproctitle"] 231 + tornado = ["tornado (>=0.2)"] 232 + 233 + [[package]] 214 234 name = "idna" 215 235 version = "3.6" 216 236 description = "Internationalized Domain Names in Applications (IDNA)" ··· 236 256 rsa = ["cryptography (>=3.0.0)"] 237 257 signals = ["blinker (>=1.4.0)"] 238 258 signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] 259 + 260 + [[package]] 261 + name = "packaging" 262 + version = "24.0" 263 + description = "Core utilities for Python packages" 264 + optional = false 265 + python-versions = ">=3.7" 266 + files = [ 267 + {file = "packaging-24.0-py3-none-any.whl", hash = "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5"}, 268 + {file = "packaging-24.0.tar.gz", hash = "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9"}, 269 + ] 239 270 240 271 [[package]] 241 272 name = "pillow" ··· 581 612 [metadata] 582 613 lock-version = "2.0" 583 614 python-versions = "^3.12" 584 - content-hash = "9fda7567b3ade6f3177ed5a7854eea572371d59c32c72eceb7fe93eeb0b8f5b2" 615 + content-hash = "3dc8276222636801ed72a5721a130039ce929d528b67b581fca7062ff65100bb"
+1
pyproject.toml
··· 15 15 python-magic = "^0.4.27" 16 16 python-dotenv = "^1.0.1" 17 17 psycopg = {extras = ["binary"], version = "^3.1.18"} 18 + gunicorn = "^21.2.0" 18 19 19 20 20 21 [build-system]