Metadata-Version: 2.1
Name: django-react-appshell
Version: 0.1.0
Summary: A framework for building React SPA frontends for Django projects
Home-page: 
Author: Karl Hobley
Author-email: karl@kaed.uk
License: BSD
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.0
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# Django React AppShell

Django React AppShell is a framework allows you to build a React frontend for your Django application.

Unlike other approaches, this framework allows you to use Django URL routing, views, and forms. React is used instead of Django templates.

# Installation

Install ``django-react-appshell`` with pip:

    pip install django-react-appshell


Add it to ``INSTALLED_APPS``:

```python
# settings.py

INSTALLED_APPS = [
    # ...

    'appshell',

    # ...
]

```

# Usage

See the [example project](https://github.com/kaedroho/django-react-appshell/tree/main/example) for a usage example.
