get_maintainers

Created 6 years ago
Maintained by jcline
Get Linux kernel maintainers for a file or patch
Members 2

Get Maintainers

Getting Started

To get started, create a Python 3 virtualenv and install the package:

$ sudo dnf install python-virtualenvwrapper
$ mkvirtualenv --python=python3 -a . get_maintainers
$ pip install -e .

You now have an editable install. You can run the application with the Flask development web server:

$ FLASK_DEBUG=true FLASK_APP=get_maintainers.wsgi:application flask run

or you can use gunicorn:

$ gunicorn --bind 0.0.0.0:8080 --access-logfile=- get_maintainers.wsgi:application