jcline / get_maintainers

Forked from get_maintainers 6 years ago
Clone
README.md

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