- Python 3.9+
- Flask
- Gunicorn
- Clone the repository
- Create Virtual Environment
- Install the requirements.txt using pip
- Run the Flask webapp using
(Linux) gunicorn --workers=2 -b 127.0.0.1:5022 'app:app' --timeout 120000
(Windows) waitress-serve --listen=127.0.0.1:5022 --channel-timeout=120000 "app:app"