Skip to content

๐ŸŽ The purpose of GunicornRunner is to provide a utility class for running the Gunicorn server from a virtual environment, facilitating the execution of Gunicorn with specified parameters.

License

Notifications You must be signed in to change notification settings

ImamHossainRoni/gunikite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

10 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐ŸŽ GuniKite

gunikite is a utility kit for running Gunicorn servers from a virtual environment. It helps find the location of the Gunicorn executable within the virtual environment and run it with specified parameters.

Installation

You can install gunikite using pip:

pip install gunikite

Usage

from gunikite import GunicornRunner

# Create a GunicornRunner instance
gunicorn_runner = GunicornRunner(
    worker=4,
    host="localhost",
    port=8080,
    module_name="myapp",
    app_class_name="app",
    enable_reload=True
)

# Run Gunicorn with the specified parameters
gunicorn_runner.run_gunicorn()

About

๐ŸŽ The purpose of GunicornRunner is to provide a utility class for running the Gunicorn server from a virtual environment, facilitating the execution of Gunicorn with specified parameters.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages