https://github.com/dhellmann/bartender
Automatic WSGI app loader and server for API development
https://github.com/dhellmann/bartender
Last synced: 11 months ago
JSON representation
Automatic WSGI app loader and server for API development
- Host: GitHub
- URL: https://github.com/dhellmann/bartender
- Owner: dhellmann
- Created: 2012-09-09T22:33:45.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2014-01-12T20:48:20.000Z (over 12 years ago)
- Last Synced: 2025-06-03T18:18:46.741Z (about 1 year ago)
- Language: Python
- Size: 152 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
====================================
Bartender -- WSGI App Auto-loader
====================================
Bartender is a WSGI_ application for managing other WSGI applications
at runtime. It uses stevedore_ to load the applications and werkzeug_
to dispatch incoming requests based on the URL path.
.. _WSGI: http://wsgi.org
.. _stevedore: http://pypi.python.org/pypi/stevedore
.. _werkzeug: http://werkzeug.pocoo.org/
Deploying with Bartender
========================
Bartender is designed to make deploying servers composed of isolated
components easier by removing manual configuration steps. The
front-end server can be configured to load a Bartender instance once,
and the Bartender will load the other applications and configure the
dispatcher automatically.