Metadata-Version: 1.1
Name: morepath-reactredux
Version: 0.1
Summary: Morepath example of using React & Redux
Home-page: https://github.com/morepath/morepath_reactredux
Author: Morepath developers
Author-email: morepath@googlegroups.com
License: BSD
Description: Morepath backend for React + Redux
        ==================================
        
        A Morepath REST backend with a React + Redux based frontend.
        
        Morepath backend
        ----------------
        
        You can run the code using a clean Python environment (using virtualenv)::
        
          $ virtualenv env
          $ source env/bin/activate
        
        After this you can install dependencies using::
        
          $ env/bin/pip install -e .
        
        Once that is done you can start the server::
        
          $ env/bin/run-app
        
        You can go to http://localhost:5000 to see the UI
        
        For installing the test suite and running the tests use::
        
          $ env/bin/pip install -e '.[test]'
          $ env/bin/py.test
        
        JS bundle
        ---------
        
        For an introduction to the JavaScript toolchain used see:
        
        https://github.com/faassen/bundle_example
        
        JavaScript code is in `js` subdirectory. To rebuild the bundle you
        need to install the JS dependencies (listed in package.json). Run::
        
          $ npm install
        
        to install them. Then run::
        
          $ webpack
        
        To rebuild the bundle after changing it.
        
        
        CHANGES
        *******
        
        0.1 (2016-07-01)
        ================
        
        - Initial public release.
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
