├── .gitignore ├── README.md ├── api ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── signals.py ├── tests.py ├── urls.py └── views.py ├── assets ├── bundles │ └── main.js └── js │ ├── app.jsx │ ├── auth.js │ ├── index.jsx │ └── login.jsx ├── db.sqlite3 ├── django_react_auth ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── package.json ├── requirements.txt ├── templates └── index.html └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/api/__init__.py -------------------------------------------------------------------------------- /api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/api/admin.py -------------------------------------------------------------------------------- /api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/api/apps.py -------------------------------------------------------------------------------- /api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/api/models.py -------------------------------------------------------------------------------- /api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/api/serializers.py -------------------------------------------------------------------------------- /api/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/api/signals.py -------------------------------------------------------------------------------- /api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/api/tests.py -------------------------------------------------------------------------------- /api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/api/urls.py -------------------------------------------------------------------------------- /api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/api/views.py -------------------------------------------------------------------------------- /assets/bundles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/assets/bundles/main.js -------------------------------------------------------------------------------- /assets/js/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/assets/js/app.jsx -------------------------------------------------------------------------------- /assets/js/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/assets/js/auth.js -------------------------------------------------------------------------------- /assets/js/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/assets/js/index.jsx -------------------------------------------------------------------------------- /assets/js/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/assets/js/login.jsx -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /django_react_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_react_auth/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/django_react_auth/settings.py -------------------------------------------------------------------------------- /django_react_auth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/django_react_auth/urls.py -------------------------------------------------------------------------------- /django_react_auth/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/django_react_auth/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/manage.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/templates/index.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxjonc/django-react-auth/HEAD/webpack.config.js --------------------------------------------------------------------------------