{"id":24912337,"url":"https://github.com/krish-makadiya/dev-charcha","last_synced_at":"2026-04-10T13:32:30.377Z","repository":{"id":273177460,"uuid":"918911491","full_name":"Krish-Makadiya/Dev-Charcha","owner":"Krish-Makadiya","description":"Dev-Charcha is a developer community platform built with Next.js, Clerk, and Stream Chat. It supports real-time discussions on programming languages and frameworks, using MongoDB and Express.js for the backend and Tailwind CSS for styling. Connect, share, and grow with fellow developers.","archived":false,"fork":false,"pushed_at":"2025-01-29T06:32:16.000Z","size":272,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T04:18:37.421Z","etag":null,"topics":["api","authentication","backend","clerk","collaboration","developer-community","express-js","frontend","full-stack-development","mern-stack","mongodb","nextjs","open-source","programming","react","real-time-messaging","responsive-design","stream-chat","tailwind-css","web-development"],"latest_commit_sha":null,"homepage":"https://dev-charcha.vercel.app","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Krish-Makadiya.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-19T07:39:35.000Z","updated_at":"2025-01-29T06:39:57.000Z","dependencies_parsed_at":"2025-01-19T08:27:18.010Z","dependency_job_id":"f89b8a3c-9750-4aca-af82-89a3d132e5a8","html_url":"https://github.com/Krish-Makadiya/Dev-Charcha","commit_stats":null,"previous_names":["krish-makadiya/dev-charcha"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Krish-Makadiya%2FDev-Charcha","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Krish-Makadiya%2FDev-Charcha/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Krish-Makadiya%2FDev-Charcha/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Krish-Makadiya%2FDev-Charcha/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Krish-Makadiya","download_url":"https://codeload.github.com/Krish-Makadiya/Dev-Charcha/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245966928,"owners_count":20701758,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","authentication","backend","clerk","collaboration","developer-community","express-js","frontend","full-stack-development","mern-stack","mongodb","nextjs","open-source","programming","react","real-time-messaging","responsive-design","stream-chat","tailwind-css","web-development"],"created_at":"2025-02-02T05:19:19.188Z","updated_at":"2025-12-30T20:14:48.278Z","avatar_url":"https://github.com/Krish-Makadiya.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dev-Charcha\n\n**Dev-Charcha** is a community platform designed for developers to discuss and collaborate on various programming languages, frameworks, and libraries. Built with **Next.js** and powered by **Stream Chat**, this platform fosters communication and mutual assistance among developers worldwide.\n\n---\n\n## Features\n\n- **Language-Specific Channels**: Join channels dedicated to your preferred programming languages and frameworks.\n- **Real-Time Messaging**: Engage in seamless real-time conversations.\n- **User Authentication**: Secure login and sign-up system using Clerk.\n- **Responsive Design**: Fully optimized for desktop and mobile devices.\n- **Customizable Profile**: Personalize your user profile with relevant details.\n- **Stream Chat Integration**: Leverage the robust capabilities of Stream Chat for messaging and channel management.\n\n---\n\n## Tech Stack\n\n### Frontend\n- **Framework**: Next.js\n- **State Management**: React (part of MERN stack)\n- **Styling**: Tailwind CSS\n\n### Backend\n- **Authentication**: Clerk\n- **Database**: MongoDB\n- **Server**: Express.js\n- **Messaging**: Stream Chat APIs\n\n### Hosting\n- Deployed on platforms like Vercel or Netlify (for frontend) and other hosting services (for backend, if applicable).\n\n---\n\n## Installation\n\nFollow these steps to set up the project locally:\n\n### Prerequisites\n- Node.js (version 16+)\n- npm or yarn\n- MongoDB instance\n- Stream Chat API credentials\n- Clerk API credentials\n\n### Steps\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/yourusername/dev-charcha.git\n   cd dev-charcha\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   # or\n   yarn install\n   ```\n\n3. Create a `.env.local` file in the root directory and add the following environment variables:\n   ```env\n   NEXT_PUBLIC_STREAM_API_KEY=your_stream_api_key\n   NEXT_PUBLIC_CLERK_FRONTEND_API=your_clerk_frontend_api\n   MONGODB_URI=your_mongodb_connection_string\n   STREAM_API_SECRET=your_stream_api_secret\n   ```\n\n4. Start the development server:\n   ```bash\n   npm run dev\n   # or\n   yarn dev\n   ```\n\n5. Open [http://localhost:3000](http://localhost:3000) in your browser to view the application.\n\n---\n\n## Usage\n\n1. Sign up or log in to access the platform.\n2. Explore language-specific channels and join discussions.\n3. Share knowledge, ask questions, and help others in real-time.\n\n---\n\n## Contributing\n\nContributions are welcome! Follow these steps to contribute:\n\n1. Fork the repository.\n2. Create a new branch:\n   ```bash\n   git checkout -b feature/your-feature-name\n   ```\n3. Make your changes and commit them:\n   ```bash\n   git commit -m \"Add a meaningful commit message\"\n   ```\n4. Push to your branch:\n   ```bash\n   git push origin feature/your-feature-name\n   ```\n5. Create a Pull Request.\n\n---\n\n\n## Acknowledgements\n\n- [Next.js](https://nextjs.org/)\n- [Stream Chat](https://getstream.io/chat/)\n- [Clerk](https://clerk.dev/)\n- [MongoDB](https://www.mongodb.com/)\n- [Express.js](https://expressjs.com/)\n- Open-source contributors\n\n---\n\n## Contact\n\nFor queries or suggestions, feel free to contact:\n- **Email**: krishmakadiya2005@gmil.com\n---\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrish-makadiya%2Fdev-charcha","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkrish-makadiya%2Fdev-charcha","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrish-makadiya%2Fdev-charcha/lists"}