Argumentation Is Really Awesome
AIRA is a web platform used to demonstrate a variety of argumentation methods currently based on research by Nico Potyka at Imperial College London. The original Uncertainpy argumentation library was built with Java and is available for download on its sourceforge page.
I suggest using waitress to host the Flask project locally.
pip install waitress
Create a new wsgi (wsgi_local.py) for local testing in the root folder.
from waitress import serve
from app.root import app
serve(app, host='0.0.0.0', port=8080)
Run the new local wsgi script
python wsgi_local.py