├── backend ├── .gitignore ├── api │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_category_gallery_service.py │ │ ├── 0003_auto_20230128_1150.py │ │ ├── 0004_auto_20230128_1920.py │ │ ├── 0005_orders.py │ │ ├── 0006_auto_20230130_0550.py │ │ ├── 0007_profile.py │ │ ├── 0008_auto_20230301_0444.py │ │ ├── 0009_todo.py │ │ ├── 0010_chatmessage.py │ │ └── __init__.py │ ├── models.py │ ├── serializer.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── backend │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── media │ ├── default.jpg │ └── user_images │ │ ├── 14323626_s84-pm-2698-ploy-mockup.jpg │ │ └── 218884489_1489407691458770_8916744002593220091_n.jpg └── requirements.txt ├── frontend ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.js │ ├── context │ └── AuthContext.js │ ├── index.css │ ├── index.js │ ├── utils │ ├── PrivateRoute.js │ └── useAxios.js │ └── views │ ├── Dashboard.js │ ├── Homepage.js │ ├── Loginpage.js │ ├── Message.js │ ├── MessageDetail.js │ ├── Navbar.js │ ├── Registerpage.js │ ├── SearchUsers.js │ ├── Todo.js │ └── style │ └── Message.css └── templates ├── Authentication ├── dashboard.html ├── index.html ├── login.html └── register.html ├── Chat ├── index.html └── style.css └── To-do └── index.html /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/admin.py -------------------------------------------------------------------------------- /backend/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/apps.py -------------------------------------------------------------------------------- /backend/api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/api/migrations/0002_category_gallery_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/migrations/0002_category_gallery_service.py -------------------------------------------------------------------------------- /backend/api/migrations/0003_auto_20230128_1150.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/migrations/0003_auto_20230128_1150.py -------------------------------------------------------------------------------- /backend/api/migrations/0004_auto_20230128_1920.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/migrations/0004_auto_20230128_1920.py -------------------------------------------------------------------------------- /backend/api/migrations/0005_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/migrations/0005_orders.py -------------------------------------------------------------------------------- /backend/api/migrations/0006_auto_20230130_0550.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/migrations/0006_auto_20230130_0550.py -------------------------------------------------------------------------------- /backend/api/migrations/0007_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/migrations/0007_profile.py -------------------------------------------------------------------------------- /backend/api/migrations/0008_auto_20230301_0444.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/migrations/0008_auto_20230301_0444.py -------------------------------------------------------------------------------- /backend/api/migrations/0009_todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/migrations/0009_todo.py -------------------------------------------------------------------------------- /backend/api/migrations/0010_chatmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/migrations/0010_chatmessage.py -------------------------------------------------------------------------------- /backend/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/models.py -------------------------------------------------------------------------------- /backend/api/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/serializer.py -------------------------------------------------------------------------------- /backend/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/tests.py -------------------------------------------------------------------------------- /backend/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/urls.py -------------------------------------------------------------------------------- /backend/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/api/views.py -------------------------------------------------------------------------------- /backend/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/backend/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/backend/asgi.py -------------------------------------------------------------------------------- /backend/backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/backend/settings.py -------------------------------------------------------------------------------- /backend/backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/backend/urls.py -------------------------------------------------------------------------------- /backend/backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/backend/wsgi.py -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/media/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/media/default.jpg -------------------------------------------------------------------------------- /backend/media/user_images/14323626_s84-pm-2698-ploy-mockup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/media/user_images/14323626_s84-pm-2698-ploy-mockup.jpg -------------------------------------------------------------------------------- /backend/media/user_images/218884489_1489407691458770_8916744002593220091_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/media/user_images/218884489_1489407691458770_8916744002593220091_n.jpg -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/context/AuthContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/context/AuthContext.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/utils/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/utils/PrivateRoute.js -------------------------------------------------------------------------------- /frontend/src/utils/useAxios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/utils/useAxios.js -------------------------------------------------------------------------------- /frontend/src/views/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/views/Dashboard.js -------------------------------------------------------------------------------- /frontend/src/views/Homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/views/Homepage.js -------------------------------------------------------------------------------- /frontend/src/views/Loginpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/views/Loginpage.js -------------------------------------------------------------------------------- /frontend/src/views/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/views/Message.js -------------------------------------------------------------------------------- /frontend/src/views/MessageDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/views/MessageDetail.js -------------------------------------------------------------------------------- /frontend/src/views/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/views/Navbar.js -------------------------------------------------------------------------------- /frontend/src/views/Registerpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/views/Registerpage.js -------------------------------------------------------------------------------- /frontend/src/views/SearchUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/views/SearchUsers.js -------------------------------------------------------------------------------- /frontend/src/views/Todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/views/Todo.js -------------------------------------------------------------------------------- /frontend/src/views/style/Message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/frontend/src/views/style/Message.css -------------------------------------------------------------------------------- /templates/Authentication/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/templates/Authentication/dashboard.html -------------------------------------------------------------------------------- /templates/Authentication/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/templates/Authentication/index.html -------------------------------------------------------------------------------- /templates/Authentication/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/templates/Authentication/login.html -------------------------------------------------------------------------------- /templates/Authentication/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/templates/Authentication/register.html -------------------------------------------------------------------------------- /templates/Chat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/templates/Chat/index.html -------------------------------------------------------------------------------- /templates/Chat/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/templates/Chat/style.css -------------------------------------------------------------------------------- /templates/To-do/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desphixs/Chatapp-using-Django-RestFramework-and-React/HEAD/templates/To-do/index.html --------------------------------------------------------------------------------