diff --git a/config/server.py b/config/server.py index 1d959ee..4497b86 100644 --- a/config/server.py +++ b/config/server.py @@ -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', diff --git a/install.sh b/install.sh index 0a9077e..167fcc8 100644 --- a/install.sh +++ b/install.sh @@ -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