├── .gitignore ├── LICENSE ├── README.md ├── assets └── client │ └── src │ ├── components │ ├── App.js │ ├── App.less │ ├── about │ │ └── AboutPage.js │ ├── footer │ │ └── Footer.js │ ├── header │ │ └── header.js │ ├── home │ │ └── HomePage.js │ ├── login-select │ │ ├── LoginSelect.js │ │ └── LoginSelect.less │ └── main │ │ └── Main.js │ ├── index.js │ └── vendor │ └── bootswatch-flatly.css ├── manage.py ├── myapp ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── myapp │ │ ├── index.html │ │ └── test.html ├── tests.py ├── urls.py └── views.py ├── package.json ├── react_webpack_django ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── requirements.txt └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/README.md -------------------------------------------------------------------------------- /assets/client/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/components/App.js -------------------------------------------------------------------------------- /assets/client/src/components/App.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/components/App.less -------------------------------------------------------------------------------- /assets/client/src/components/about/AboutPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/components/about/AboutPage.js -------------------------------------------------------------------------------- /assets/client/src/components/footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/components/footer/Footer.js -------------------------------------------------------------------------------- /assets/client/src/components/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/components/header/header.js -------------------------------------------------------------------------------- /assets/client/src/components/home/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/components/home/HomePage.js -------------------------------------------------------------------------------- /assets/client/src/components/login-select/LoginSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/components/login-select/LoginSelect.js -------------------------------------------------------------------------------- /assets/client/src/components/login-select/LoginSelect.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/components/login-select/LoginSelect.less -------------------------------------------------------------------------------- /assets/client/src/components/main/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/components/main/Main.js -------------------------------------------------------------------------------- /assets/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/index.js -------------------------------------------------------------------------------- /assets/client/src/vendor/bootswatch-flatly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/assets/client/src/vendor/bootswatch-flatly.css -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/manage.py -------------------------------------------------------------------------------- /myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/myapp/admin.py -------------------------------------------------------------------------------- /myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/myapp/apps.py -------------------------------------------------------------------------------- /myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/myapp/models.py -------------------------------------------------------------------------------- /myapp/templates/myapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/myapp/templates/myapp/index.html -------------------------------------------------------------------------------- /myapp/templates/myapp/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/myapp/templates/myapp/test.html -------------------------------------------------------------------------------- /myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/myapp/tests.py -------------------------------------------------------------------------------- /myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/myapp/urls.py -------------------------------------------------------------------------------- /myapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/myapp/views.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/package.json -------------------------------------------------------------------------------- /react_webpack_django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react_webpack_django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/react_webpack_django/settings.py -------------------------------------------------------------------------------- /react_webpack_django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/react_webpack_django/urls.py -------------------------------------------------------------------------------- /react_webpack_django/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/react_webpack_django/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/requirements.txt -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwild/react-webpack-django/HEAD/webpack.config.js --------------------------------------------------------------------------------