logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Gunicorn Server - Run Python Web Apps | Online Free DevTools by Hexmos

Run Python web apps easily with Gunicorn HTTP server. Configure ports, workers, and enable HTTPS for secure deployments. Free online tool, no registration required.

gunicorn

Python WSGI HTTP Server. More information: https://docs.gunicorn.org/en/latest/run.html.

  • Run Python web app:

gunicorn {{import.path:app_object}}

  • Listen on port 8080 on localhost:

gunicorn {{[-b|--bind]}} {{localhost}}:{{8080}} {{import.path:app_object}}

  • Turn on live reload:

gunicorn --reload {{import.path:app_object}}

  • Use 4 worker processes for handling requests:

gunicorn {{[-w|--workers]}} {{4}} {{import.path:app_object}}

  • Use 4 worker threads for handling requests:

gunicorn --threads {{4}} {{import.path:app_object}}

  • Run app over HTTPS:

gunicorn --certfile {{cert.pem}} --keyfile {{key.pem}} {{import.path:app_object}}

See Also