Metadata-Version: 2.1
Name: django-create-react-app
Version: 0.3
Summary: use create react app with django
Home-page: https://github.com/aamirbhat/django-create-react-app.git
Author: Aamir Bhat
Author-email: aamirbhat.pro@gmail.com
License: UNKNOWN
Description: django-create-react-app
        ----------------------
        
        
        This app is a Django app that helps to integrating the integrate the React that has been added in your Project through
        create React App
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        ### Install 
        
        ```
        pip install django-create-react-app
        
        ```
        
        
        
        
        1. Add "create_react_app" to your INSTALLED_APPS setting like this::
        
        ```
            INSTALLED_APPS = [
                ...
                'create_react_app',
            ]
        
        ```
        
        2. Add create react app configuration into your settings::
        ```
            CREATE_REACT_APP = {
                'DEFAULT': {
                    'BUNDLE_DIR_NAME': '<path to bundle folder>',
                    'FRONT_END_SERVER': "http://localhost:3000/",
                    'is_dev': False,
                }
            }
        ```
        
        
        3. Use it in your templates ::
        ```
        {% load react_bundle_loader %}
        
        <html>
          <head>
            {% render_bundle_css  %}
          </head>
          <body>
            ....
             {% render_bundle_js %}
          </body>
        </head>
            
        ```
        
Keywords: django,create-react-app,react
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Framework :: Django
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
