├── .babelrc ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.rst ├── REQUIREMENTS.txt ├── django_react ├── __init__.py ├── asgi.py ├── engine.py ├── routing.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── myapp ├── __init__.py ├── admin.py ├── apps.py ├── consumers.py ├── engine.py ├── migrations │ └── __init__.py ├── models.py ├── static │ └── myapp │ │ └── js │ │ ├── actions.js │ │ ├── apps │ │ └── index.react.js │ │ ├── components │ │ ├── Counter.react.js │ │ └── Header.react.js │ │ ├── constants.js │ │ ├── containers │ │ └── Root.react.js │ │ ├── reducers.js │ │ └── utils │ │ └── WebsocketBridge.js ├── templates │ ├── myapp │ │ └── index.html │ └── registration │ │ └── login.html ├── tests.py └── views.py ├── package.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/README.rst -------------------------------------------------------------------------------- /REQUIREMENTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/REQUIREMENTS.txt -------------------------------------------------------------------------------- /django_react/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_react/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/django_react/asgi.py -------------------------------------------------------------------------------- /django_react/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/django_react/engine.py -------------------------------------------------------------------------------- /django_react/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/django_react/routing.py -------------------------------------------------------------------------------- /django_react/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/django_react/settings.py -------------------------------------------------------------------------------- /django_react/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/django_react/urls.py -------------------------------------------------------------------------------- /django_react/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/django_react/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/manage.py -------------------------------------------------------------------------------- /myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/admin.py -------------------------------------------------------------------------------- /myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/apps.py -------------------------------------------------------------------------------- /myapp/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/consumers.py -------------------------------------------------------------------------------- /myapp/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/engine.py -------------------------------------------------------------------------------- /myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/models.py -------------------------------------------------------------------------------- /myapp/static/myapp/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/static/myapp/js/actions.js -------------------------------------------------------------------------------- /myapp/static/myapp/js/apps/index.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/static/myapp/js/apps/index.react.js -------------------------------------------------------------------------------- /myapp/static/myapp/js/components/Counter.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/static/myapp/js/components/Counter.react.js -------------------------------------------------------------------------------- /myapp/static/myapp/js/components/Header.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/static/myapp/js/components/Header.react.js -------------------------------------------------------------------------------- /myapp/static/myapp/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/static/myapp/js/constants.js -------------------------------------------------------------------------------- /myapp/static/myapp/js/containers/Root.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/static/myapp/js/containers/Root.react.js -------------------------------------------------------------------------------- /myapp/static/myapp/js/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/static/myapp/js/reducers.js -------------------------------------------------------------------------------- /myapp/static/myapp/js/utils/WebsocketBridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/static/myapp/js/utils/WebsocketBridge.js -------------------------------------------------------------------------------- /myapp/templates/myapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/templates/myapp/index.html -------------------------------------------------------------------------------- /myapp/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/templates/registration/login.html -------------------------------------------------------------------------------- /myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/tests.py -------------------------------------------------------------------------------- /myapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/myapp/views.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcurella/django-channels-react-redux/HEAD/webpack.config.js --------------------------------------------------------------------------------