├── .github ├── dependabot.yml └── workflows │ ├── automerge.yml │ ├── django.yml │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── jwt-react ├── .gitignore ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── __mocks__ │ └── axios.js │ ├── api │ ├── auth.js │ ├── auth.test.js │ ├── rest.js │ └── rest.test.js │ ├── components │ ├── App │ │ ├── App.css │ │ ├── App.js │ │ └── App.test.js │ ├── AuthenticatedPingTest │ │ └── AuthenticatedPingTest.js │ └── Login │ │ └── Login.js │ ├── contexts │ └── userContext.js │ ├── index.css │ ├── index.js │ ├── pages │ ├── AuthenticatedPing.js │ ├── HomePage.js │ └── LoginPage.js │ ├── serviceWorker.js │ └── setupTests.js └── server ├── .gitignore ├── README.md ├── manage.py ├── public ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt └── server ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/README.md -------------------------------------------------------------------------------- /jwt-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/.gitignore -------------------------------------------------------------------------------- /jwt-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/package-lock.json -------------------------------------------------------------------------------- /jwt-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/package.json -------------------------------------------------------------------------------- /jwt-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/public/favicon.ico -------------------------------------------------------------------------------- /jwt-react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/public/index.html -------------------------------------------------------------------------------- /jwt-react/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/public/logo192.png -------------------------------------------------------------------------------- /jwt-react/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/public/logo512.png -------------------------------------------------------------------------------- /jwt-react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/public/manifest.json -------------------------------------------------------------------------------- /jwt-react/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/public/robots.txt -------------------------------------------------------------------------------- /jwt-react/src/__mocks__/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/__mocks__/axios.js -------------------------------------------------------------------------------- /jwt-react/src/api/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/api/auth.js -------------------------------------------------------------------------------- /jwt-react/src/api/auth.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/api/auth.test.js -------------------------------------------------------------------------------- /jwt-react/src/api/rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/api/rest.js -------------------------------------------------------------------------------- /jwt-react/src/api/rest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/api/rest.test.js -------------------------------------------------------------------------------- /jwt-react/src/components/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/components/App/App.css -------------------------------------------------------------------------------- /jwt-react/src/components/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/components/App/App.js -------------------------------------------------------------------------------- /jwt-react/src/components/App/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/components/App/App.test.js -------------------------------------------------------------------------------- /jwt-react/src/components/AuthenticatedPingTest/AuthenticatedPingTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/components/AuthenticatedPingTest/AuthenticatedPingTest.js -------------------------------------------------------------------------------- /jwt-react/src/components/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/components/Login/Login.js -------------------------------------------------------------------------------- /jwt-react/src/contexts/userContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/contexts/userContext.js -------------------------------------------------------------------------------- /jwt-react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/index.css -------------------------------------------------------------------------------- /jwt-react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/index.js -------------------------------------------------------------------------------- /jwt-react/src/pages/AuthenticatedPing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/pages/AuthenticatedPing.js -------------------------------------------------------------------------------- /jwt-react/src/pages/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/pages/HomePage.js -------------------------------------------------------------------------------- /jwt-react/src/pages/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/pages/LoginPage.js -------------------------------------------------------------------------------- /jwt-react/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/jwt-react/src/serviceWorker.js -------------------------------------------------------------------------------- /jwt-react/src/setupTests.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/extend-expect'; 2 | -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/README.md -------------------------------------------------------------------------------- /server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/manage.py -------------------------------------------------------------------------------- /server/public/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/public/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/public/admin.py -------------------------------------------------------------------------------- /server/public/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/public/apps.py -------------------------------------------------------------------------------- /server/public/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/public/migrations/0001_initial.py -------------------------------------------------------------------------------- /server/public/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/public/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/public/models.py -------------------------------------------------------------------------------- /server/public/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/public/tests.py -------------------------------------------------------------------------------- /server/public/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/public/urls.py -------------------------------------------------------------------------------- /server/public/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/public/views.py -------------------------------------------------------------------------------- /server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/requirements.txt -------------------------------------------------------------------------------- /server/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/server/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/server/asgi.py -------------------------------------------------------------------------------- /server/server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/server/settings.py -------------------------------------------------------------------------------- /server/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/server/urls.py -------------------------------------------------------------------------------- /server/server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleJWT/drf-SimpleJWT-React/HEAD/server/server/wsgi.py --------------------------------------------------------------------------------