Metadata-Version: 1.1
Name: sappy
Version: 0.1
Summary: Single-page application server for end-to-end testing.
Home-page: https://github.com/jacebrowning/sappy
Author: Jace Browning
Author-email: jacebrowning@gmail.com
License: MIT
Description: sappy
        =====
        
        Single-page application server for end-to-end testing.
        
        Unix: |Unix Build Status| Windows: |Windows Build Status|\ Metrics:
        |Coverage Status| |Scrutinizer Code Quality|\ Usage: |PyPI Version|
        |PyPI Downloads|
        
        Getting Started
        ---------------
        
        Requirements
        ~~~~~~~~~~~~
        
        -  Python 3.5+
        
        Installation
        ~~~~~~~~~~~~
        
        Install ``sappy`` using pip:
        
        ::
        
            $ pip install sappy
        
        or directly from the source code:
        
        ::
        
            $ git clone https://github.com/jacebrowning/sappy.git
            $ cd sappy
            $ python setup.py install
        
        Basic Usage
        -----------
        
        Build your static website (e.g. an Ember application) for production:
        
        ::
        
            $ ember build --environment=production
            Building...
            Built project successfully. Stored in "dist/".
        
        Then serve up the application:
        
        ::
        
            $ sappy
            Serving /home/browning/project/dist/ on 8080
        
        Check out the
        `documentation <http://sappy.readthedocs.io/en/latest/cli>`__ or
        command-line help for additional options:
        
        ::
        
            $ sappy --help
        
        .. |Unix Build Status| image:: http://img.shields.io/travis/jacebrowning/sappy/develop.svg
           :target: https://travis-ci.org/jacebrowning/sappy
        .. |Windows Build Status| image:: https://img.shields.io/appveyor/ci/jacebrowning/sappy/develop.svg
           :target: https://ci.appveyor.com/project/jacebrowning/sappy
        .. |Coverage Status| image:: http://img.shields.io/coveralls/jacebrowning/sappy/develop.svg
           :target: https://coveralls.io/r/jacebrowning/sappy
        .. |Scrutinizer Code Quality| image:: http://img.shields.io/scrutinizer/g/jacebrowning/sappy.svg
           :target: https://scrutinizer-ci.com/g/jacebrowning/sappy/?branch=develop
        .. |PyPI Version| image:: http://img.shields.io/pypi/v/sappy.svg
           :target: https://pypi.python.org/pypi/sappy
        .. |PyPI Downloads| image:: http://img.shields.io/pypi/dm/sappy.svg
           :target: https://pypi.python.org/pypi/sappy
        
        Revision History
        ================
        
        0.1 (2016/06/09)
        ----------------
        
        -  Initial release.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Testing
