Metadata-Version: 2.0
Name: Showcase
Version: 0.3.4
Summary: Like SimpleHTTPServer, only worse
Home-page: UNKNOWN
Author: James Rutherford
Author-email: jim@jimr.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Requires-Dist: Flask (==0.12)
Requires-Dist: chardet (==2.3.0)
Requires-Dist: gunicorn (==19.7.0)
Requires-Dist: humanize (==0.5.1)

========
Showcase
========

A slightly nicer, probably less secure version of ``python -m SimpleHTTPServer``.

Installation
============

``pip install showcase``

Usage
=====

Not for production use, etc. To browse the current folder with Showcase, run::

    FLASK_APP=showcase.app flask run

or, using ``gunicorn``::

    gunicorn showcase:app -b 127.0.0.1:5000

Once it's running, head to http://127.0.0.1:5000 and enjoy.

To browse somewhere other than where you run it from, set the ``SHOWCASE_DIR`` environment variable::

    SHOWCASE_DIR=/path/to/somewhere/else gunicorn showcase:app -b 127.0.0.1:5000

Developing
==========

To run the tests: ``python setup.py test``.

License
=======

See ``LICENSE.txt``.


