Need multi-thread server for circular call issue (paste).

This commit is contained in:
Dita Aji Pratama 2025-08-05 17:28:43 +07:00
parent 4a15e9a2fa
commit c08e62263b
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@ host = "localhost"
port = 11000
reloader = True
debug = False
server = 'wsgiref' # try 'gunicorn'
server = 'paste' # try 'gunicorn'
session_opts = {
'session.type': 'file',

View File

@ -4,6 +4,7 @@ python3 -m venv .venv # Create .venv
.venv/bin/pip3 install bottle # Micro Framework
.venv/bin/pip3 install gunicorn # WSGI Server Backend
.venv/bin/pip3 install paste # WSGI Server Backend that support circular call
.venv/bin/pip3 install beaker # Session & caching library
.venv/bin/pip3 install mako # Template library