├── .babelrc ├── .bootstraprc ├── .env ├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS.md ├── LICENSE ├── README.md ├── docker-common.yml ├── docker-compose.yml ├── docker ├── django │ ├── Dockerfile │ └── django-entrypoint.sh ├── nginx │ └── default.conf ├── postgres │ ├── Dockerfile │ ├── data │ │ └── .gitkeep │ └── init-user-db.sh └── web │ ├── Dockerfile │ └── web-entrypoint.sh ├── package.json ├── py-requirements ├── base.txt ├── dev.txt └── prod.txt ├── pytest.ini ├── pytest_ci.ini ├── screenshots ├── screenshot_01.png └── screenshot_02.png ├── src ├── accounts │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_clean_user_model.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── urls.py │ └── views.py ├── base │ ├── __init__.py │ ├── urls.py │ └── views.py ├── djangoreactredux │ ├── __init__.py │ ├── settings │ │ ├── __init__.py │ │ ├── base.py │ │ ├── ci.py │ │ ├── dev.py │ │ ├── dev_docker.py │ │ ├── prod.py │ │ └── staging.py │ ├── urls.py │ └── wsgi.py ├── fixtures.json ├── lib │ ├── __init__.py │ ├── testutils.py │ └── utils.py ├── manage.py └── static │ ├── actions │ ├── auth.js │ └── data.js │ ├── app.js │ ├── components │ └── .gitkeep │ ├── constants │ └── index.js │ ├── containers │ ├── Home │ │ ├── images │ │ │ ├── react-logo.png │ │ │ └── redux-logo.png │ │ ├── index.js │ │ └── style.scss │ ├── Login │ │ └── index.js │ ├── NotFound │ │ └── index.js │ ├── Protected │ │ └── index.js │ ├── Root │ │ ├── DevTools.js │ │ ├── Root.dev.js │ │ ├── Root.js │ │ └── Root.prod.js │ └── index.js │ ├── fonts │ └── .keep │ ├── images │ └── .keep │ ├── index.html │ ├── index.js │ ├── postcss.config.js │ ├── reducers │ ├── auth.js │ ├── data.js │ └── index.js │ ├── routes.js │ ├── store │ ├── configureStore.dev.js │ ├── configureStore.js │ └── configureStore.prod.js │ ├── styles │ ├── components │ │ └── .gitkeep │ ├── config │ │ ├── _colors.scss │ │ ├── _fonts.scss │ │ ├── _reset.scss │ │ ├── _typography.scss │ │ └── _variables.scss │ ├── font-awesome-helper.js │ ├── font-awesome.config.js │ ├── font-awesome.config.less │ ├── font-awesome.config.prod.js │ ├── main.scss │ ├── theme │ │ ├── _base.scss │ │ ├── _footer.scss │ │ ├── _login.scss │ │ └── _navbar.scss │ └── utils │ │ └── _margins.scss │ └── utils │ ├── config.js │ ├── index.js │ └── requireAuthentication.js ├── tests ├── __init__.py ├── js │ ├── actions │ │ ├── auth.specs.js │ │ └── data.specs.js │ ├── components │ │ └── AuthenticatedComponent.spec.js │ ├── containers │ │ ├── App.spec.js │ │ ├── Home.spec.js │ │ ├── Login.spec.js │ │ ├── NotFound.spec.js │ │ └── Protected.spec.js │ └── reducers │ │ ├── auth.spec.js │ │ ├── data.spec.js │ │ └── general.spec.js ├── python │ ├── __init__.py │ ├── accounts │ │ ├── __init__.py │ │ ├── test_models.py │ │ ├── test_serializers.py │ │ └── test_views.py │ ├── base │ │ ├── __init__.py │ │ └── test_views.py │ └── utils │ │ ├── __init__.py │ │ └── test_utils.py └── require.js └── webpack ├── common.config.js ├── dev.config.js └── prod.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/.babelrc -------------------------------------------------------------------------------- /.bootstraprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/.bootstraprc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/README.md -------------------------------------------------------------------------------- /docker-common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/docker-common.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/docker/django/Dockerfile -------------------------------------------------------------------------------- /docker/django/django-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/docker/django/django-entrypoint.sh -------------------------------------------------------------------------------- /docker/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/docker/nginx/default.conf -------------------------------------------------------------------------------- /docker/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/docker/postgres/Dockerfile -------------------------------------------------------------------------------- /docker/postgres/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/postgres/init-user-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/docker/postgres/init-user-db.sh -------------------------------------------------------------------------------- /docker/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/docker/web/Dockerfile -------------------------------------------------------------------------------- /docker/web/web-entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | yarn 4 | npm run dev 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/package.json -------------------------------------------------------------------------------- /py-requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/py-requirements/base.txt -------------------------------------------------------------------------------- /py-requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/py-requirements/dev.txt -------------------------------------------------------------------------------- /py-requirements/prod.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | 3 | gunicorn==19.7.1 4 | -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/pytest.ini -------------------------------------------------------------------------------- /pytest_ci.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/pytest_ci.ini -------------------------------------------------------------------------------- /screenshots/screenshot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/screenshots/screenshot_01.png -------------------------------------------------------------------------------- /screenshots/screenshot_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/screenshots/screenshot_02.png -------------------------------------------------------------------------------- /src/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/accounts/migrations/0002_clean_user_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/accounts/migrations/0002_clean_user_model.py -------------------------------------------------------------------------------- /src/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/accounts/models.py -------------------------------------------------------------------------------- /src/accounts/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/accounts/serializers.py -------------------------------------------------------------------------------- /src/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/accounts/urls.py -------------------------------------------------------------------------------- /src/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/accounts/views.py -------------------------------------------------------------------------------- /src/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/base/urls.py -------------------------------------------------------------------------------- /src/base/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/base/views.py -------------------------------------------------------------------------------- /src/djangoreactredux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/djangoreactredux/settings/__init__.py: -------------------------------------------------------------------------------- 1 | from .dev import * 2 | -------------------------------------------------------------------------------- /src/djangoreactredux/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/djangoreactredux/settings/base.py -------------------------------------------------------------------------------- /src/djangoreactredux/settings/ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/djangoreactredux/settings/ci.py -------------------------------------------------------------------------------- /src/djangoreactredux/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/djangoreactredux/settings/dev.py -------------------------------------------------------------------------------- /src/djangoreactredux/settings/dev_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/djangoreactredux/settings/dev_docker.py -------------------------------------------------------------------------------- /src/djangoreactredux/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/djangoreactredux/settings/prod.py -------------------------------------------------------------------------------- /src/djangoreactredux/settings/staging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/djangoreactredux/settings/staging.py -------------------------------------------------------------------------------- /src/djangoreactredux/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/djangoreactredux/urls.py -------------------------------------------------------------------------------- /src/djangoreactredux/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/djangoreactredux/wsgi.py -------------------------------------------------------------------------------- /src/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/fixtures.json -------------------------------------------------------------------------------- /src/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/lib/testutils.py -------------------------------------------------------------------------------- /src/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/lib/utils.py -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/static/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/actions/auth.js -------------------------------------------------------------------------------- /src/static/actions/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/actions/data.js -------------------------------------------------------------------------------- /src/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/app.js -------------------------------------------------------------------------------- /src/static/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/constants/index.js -------------------------------------------------------------------------------- /src/static/containers/Home/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/Home/images/react-logo.png -------------------------------------------------------------------------------- /src/static/containers/Home/images/redux-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/Home/images/redux-logo.png -------------------------------------------------------------------------------- /src/static/containers/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/Home/index.js -------------------------------------------------------------------------------- /src/static/containers/Home/style.scss: -------------------------------------------------------------------------------- 1 | .page-logo { 2 | max-width: 200px; 3 | } -------------------------------------------------------------------------------- /src/static/containers/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/Login/index.js -------------------------------------------------------------------------------- /src/static/containers/NotFound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/NotFound/index.js -------------------------------------------------------------------------------- /src/static/containers/Protected/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/Protected/index.js -------------------------------------------------------------------------------- /src/static/containers/Root/DevTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/Root/DevTools.js -------------------------------------------------------------------------------- /src/static/containers/Root/Root.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/Root/Root.dev.js -------------------------------------------------------------------------------- /src/static/containers/Root/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/Root/Root.js -------------------------------------------------------------------------------- /src/static/containers/Root/Root.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/Root/Root.prod.js -------------------------------------------------------------------------------- /src/static/containers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/containers/index.js -------------------------------------------------------------------------------- /src/static/fonts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/index.html -------------------------------------------------------------------------------- /src/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/index.js -------------------------------------------------------------------------------- /src/static/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/postcss.config.js -------------------------------------------------------------------------------- /src/static/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/reducers/auth.js -------------------------------------------------------------------------------- /src/static/reducers/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/reducers/data.js -------------------------------------------------------------------------------- /src/static/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/reducers/index.js -------------------------------------------------------------------------------- /src/static/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/routes.js -------------------------------------------------------------------------------- /src/static/store/configureStore.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/store/configureStore.dev.js -------------------------------------------------------------------------------- /src/static/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/store/configureStore.js -------------------------------------------------------------------------------- /src/static/store/configureStore.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/store/configureStore.prod.js -------------------------------------------------------------------------------- /src/static/styles/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/styles/config/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/config/_colors.scss -------------------------------------------------------------------------------- /src/static/styles/config/_fonts.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/styles/config/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/config/_reset.scss -------------------------------------------------------------------------------- /src/static/styles/config/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/config/_typography.scss -------------------------------------------------------------------------------- /src/static/styles/config/_variables.scss: -------------------------------------------------------------------------------- 1 | @import "colors"; 2 | 3 | $font-family-regular: Arial; 4 | -------------------------------------------------------------------------------- /src/static/styles/font-awesome-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/font-awesome-helper.js -------------------------------------------------------------------------------- /src/static/styles/font-awesome.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/font-awesome.config.js -------------------------------------------------------------------------------- /src/static/styles/font-awesome.config.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/font-awesome.config.less -------------------------------------------------------------------------------- /src/static/styles/font-awesome.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/font-awesome.config.prod.js -------------------------------------------------------------------------------- /src/static/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/main.scss -------------------------------------------------------------------------------- /src/static/styles/theme/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/theme/_base.scss -------------------------------------------------------------------------------- /src/static/styles/theme/_footer.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/styles/theme/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/theme/_login.scss -------------------------------------------------------------------------------- /src/static/styles/theme/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/theme/_navbar.scss -------------------------------------------------------------------------------- /src/static/styles/utils/_margins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/styles/utils/_margins.scss -------------------------------------------------------------------------------- /src/static/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/utils/config.js -------------------------------------------------------------------------------- /src/static/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/utils/index.js -------------------------------------------------------------------------------- /src/static/utils/requireAuthentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/src/static/utils/requireAuthentication.js -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/js/actions/auth.specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/js/actions/auth.specs.js -------------------------------------------------------------------------------- /tests/js/actions/data.specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/js/actions/data.specs.js -------------------------------------------------------------------------------- /tests/js/components/AuthenticatedComponent.spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/js/containers/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/js/containers/App.spec.js -------------------------------------------------------------------------------- /tests/js/containers/Home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/js/containers/Home.spec.js -------------------------------------------------------------------------------- /tests/js/containers/Login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/js/containers/Login.spec.js -------------------------------------------------------------------------------- /tests/js/containers/NotFound.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/js/containers/NotFound.spec.js -------------------------------------------------------------------------------- /tests/js/containers/Protected.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/js/containers/Protected.spec.js -------------------------------------------------------------------------------- /tests/js/reducers/auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/js/reducers/auth.spec.js -------------------------------------------------------------------------------- /tests/js/reducers/data.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/js/reducers/data.spec.js -------------------------------------------------------------------------------- /tests/js/reducers/general.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/js/reducers/general.spec.js -------------------------------------------------------------------------------- /tests/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/accounts/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/python/accounts/test_models.py -------------------------------------------------------------------------------- /tests/python/accounts/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/python/accounts/test_serializers.py -------------------------------------------------------------------------------- /tests/python/accounts/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/python/accounts/test_views.py -------------------------------------------------------------------------------- /tests/python/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/base/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/python/base/test_views.py -------------------------------------------------------------------------------- /tests/python/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/python/utils/test_utils.py -------------------------------------------------------------------------------- /tests/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/tests/require.js -------------------------------------------------------------------------------- /webpack/common.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/webpack/common.config.js -------------------------------------------------------------------------------- /webpack/dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/webpack/dev.config.js -------------------------------------------------------------------------------- /webpack/prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesdev0131/django-react-redux/HEAD/webpack/prod.config.js --------------------------------------------------------------------------------