├── .gitignore ├── backend ├── .choreo │ └── endpoints.yaml ├── .gitignore ├── Procfile ├── api │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── backend │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── requirements.txt └── frontend ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public └── vite.svg ├── src ├── App.jsx ├── api.js ├── assets │ └── react.svg ├── components │ ├── Form.jsx │ ├── LoadingIndicator.jsx │ ├── Note.jsx │ └── ProtectedRoute.jsx ├── constants.js ├── main.jsx ├── pages │ ├── Home.jsx │ ├── Login.jsx │ ├── NotFound.jsx │ └── Register.jsx └── styles │ ├── Form.css │ ├── Home.css │ ├── LoadingIndicator.css │ └── Note.css └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /backend/.choreo/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/.choreo/endpoints.yaml -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | db.sqlite3 -------------------------------------------------------------------------------- /backend/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/Procfile -------------------------------------------------------------------------------- /backend/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/api/admin.py -------------------------------------------------------------------------------- /backend/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/api/apps.py -------------------------------------------------------------------------------- /backend/api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/api/models.py -------------------------------------------------------------------------------- /backend/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/api/serializers.py -------------------------------------------------------------------------------- /backend/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/api/tests.py -------------------------------------------------------------------------------- /backend/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/api/urls.py -------------------------------------------------------------------------------- /backend/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/api/views.py -------------------------------------------------------------------------------- /backend/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/backend/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/backend/asgi.py -------------------------------------------------------------------------------- /backend/backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/backend/settings.py -------------------------------------------------------------------------------- /backend/backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/backend/urls.py -------------------------------------------------------------------------------- /backend/backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/backend/wsgi.py -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/App.jsx -------------------------------------------------------------------------------- /frontend/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/api.js -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/components/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/components/Form.jsx -------------------------------------------------------------------------------- /frontend/src/components/LoadingIndicator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/components/LoadingIndicator.jsx -------------------------------------------------------------------------------- /frontend/src/components/Note.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/components/Note.jsx -------------------------------------------------------------------------------- /frontend/src/components/ProtectedRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/components/ProtectedRoute.jsx -------------------------------------------------------------------------------- /frontend/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/constants.js -------------------------------------------------------------------------------- /frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/main.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/pages/Home.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/pages/Login.jsx -------------------------------------------------------------------------------- /frontend/src/pages/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/pages/NotFound.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/pages/Register.jsx -------------------------------------------------------------------------------- /frontend/src/styles/Form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/styles/Form.css -------------------------------------------------------------------------------- /frontend/src/styles/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/styles/Home.css -------------------------------------------------------------------------------- /frontend/src/styles/LoadingIndicator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/styles/LoadingIndicator.css -------------------------------------------------------------------------------- /frontend/src/styles/Note.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/src/styles/Note.css -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Django-React-Full-Stack-App/HEAD/frontend/vite.config.js --------------------------------------------------------------------------------