#!/usr/bin/env python
from bottle import run
from http_dumper import wsgi

# Fire up a bottle+gevent process.
run(
    host='localhost',
    server='gevent',
    port=8000,
    # Do gevent's standard monkey patching.
    monkey=True,
    # Use libevent HTTP server.
    fast=True
)