HTTP error 401 for prompt `slogan`
Developed with the software and tools below.
Real Time Chat Application
https://realtime-chatting-application-mern.onrender.com/
└── RealTime-Chatting-Application-MERN/
├── LICENSE
├── README.md
├── backend
│ ├── controllers
│ │ ├── auth.controller.js
│ │ ├── message.controller.js
│ │ └── user.controller.js
│ ├── db
│ │ └── connectToMongoDB.js
│ ├── middleware
│ │ └── protectRoute.js
│ ├── models
│ │ ├── conversation.model.js
│ │ ├── message.model.js
│ │ └── user.model.js
│ ├── routes
│ │ ├── auth.routes.js
│ │ ├── message.routes.js
│ │ └── user.routes.js
│ ├── server.js
│ ├── socket
│ │ └── socket.js
│ └── utils
│ └── generateToken.js
├── frontend
│ ├── .eslintrc.cjs
│ ├── README.md
│ ├── index.html
│ ├── package-lock.json
│ ├── package.json
│ ├── postcss.config.js
│ ├── public
│ │ ├── bg.jpg
│ │ ├── testBack.png
│ │ └── vite.svg
│ ├── src
│ │ ├── App.css
│ │ ├── App.jsx
│ │ ├── assets
│ │ │ ├── react.svg
│ │ │ └── sounds
│ │ │ └── notification.mp3
│ │ ├── components
│ │ │ ├── messages
│ │ │ │ ├── Message.jsx
│ │ │ │ ├── MessageContainer.jsx
│ │ │ │ ├── MessageInput.jsx
│ │ │ │ └── Messages.jsx
│ │ │ ├── sidebar
│ │ │ │ ├── Conversation.jsx
│ │ │ │ ├── Conversations.jsx
│ │ │ │ ├── LogoutButton.jsx
│ │ │ │ ├── SearchInput.jsx
│ │ │ │ └── Sidebar.jsx
│ │ │ └── skeletons
│ │ │ └── MessageSkeleton.jsx
│ │ ├── context
│ │ │ ├── AuthContext.jsx
│ │ │ └── SocketContext.jsx
│ │ ├── hooks
│ │ │ ├── useGetConversations.js
│ │ │ ├── useGetMessages.js
│ │ │ ├── useListenMessages.js
│ │ │ ├── useLogin.js
│ │ │ ├── useLogout.js
│ │ │ ├── useSendMessage.js
│ │ │ └── useSignup.js
│ │ ├── index.css
│ │ ├── main.jsx
│ │ ├── pages
│ │ │ ├── home
│ │ │ │ └── Home.jsx
│ │ │ ├── login
│ │ │ │ └── Login.jsx
│ │ │ └── signup
│ │ │ ├── GenderCheckbox.jsx
│ │ │ └── SignUp.jsx
│ │ ├── utils
│ │ │ ├── emojis.js
│ │ │ └── extractTime.js
│ │ └── zustand
│ │ └── useConversation.js
│ ├── tailwind.config.js
│ └── vite.config.js
├── package-lock.json
└── package.json- Clone the RealTime-Chatting-Application-MERN repository:
git clone https://github.com/adityaRaj369/RealTime-Chatting-Application-MERN- Change to the project directory:
cd RealTime-Chatting-Application-MERN- Install the dependencies:
npm installUse the following command to run RealTime-Chatting-Application-MERN:
npm run build
---
## Contributing
Contributions are welcome! Here are several ways you can contribute:
- **[Submit Pull Requests](https://github.com/adityaRaj369/RealTime-Chatting-Application-MERN/blob/main/CONTRIBUTING.md)**: Review open PRs, and submit your own PRs.
- **[Join the Discussions](https://github.com/adityaRaj369/RealTime-Chatting-Application-MERN/discussions)**: Share your insights, provide feedback, or ask questions.
- **[Report Issues](https://github.com/adityaRaj369/RealTime-Chatting-Application-MERN/issues)**: Submit bugs found or log feature requests for Realtime-chatting-application-mern.
<details closed>
<summary>Contributing Guidelines</summary>
1. **Fork the Repository**: Start by forking the project repository to your GitHub account.
2. **Clone Locally**: Clone the forked repository to your local machine using a Git client.
```sh
git clone https://github.com/adityaRaj369/RealTime-Chatting-Application-MERN
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.' - Push to GitHub: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
Once your PR is reviewed and approved, it will be merged into the main branch.
This project is protected under the MIT License. For more details, refer to the MIT file.