{"id":26542269,"url":"https://github.com/blissmal/social-app","last_synced_at":"2026-04-05T22:02:57.920Z","repository":{"id":278975120,"uuid":"937372520","full_name":"Blissmal/social-app","owner":"Blissmal","description":"A Next.js-based social app with Clerk auth, post creation/deletion by owners, and profile customization (bio, website and name). Profile image can be customized on clerk's profile management. Includes a chat listing all users (excluding the auth user) with dynamic usernames for 1-on-1 and group chats available on the chat SideBar.","archived":false,"fork":false,"pushed_at":"2025-03-21T22:10:19.000Z","size":680,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-21T23:21:56.448Z","etag":null,"topics":["approuter","clerk","nextjs","postgresql","prisma-orm","pusherjs"],"latest_commit_sha":null,"homepage":"https://bls-social-app.vercel.app","language":"TypeScript","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/Blissmal.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-02-22T22:17:51.000Z","updated_at":"2025-03-21T22:10:22.000Z","dependencies_parsed_at":"2025-02-22T23:22:06.597Z","dependency_job_id":"e07c7f04-4241-47bd-9dac-04e3d60cfbc5","html_url":"https://github.com/Blissmal/social-app","commit_stats":null,"previous_names":["blissmal/social-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blissmal%2Fsocial-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blissmal%2Fsocial-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blissmal%2Fsocial-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blissmal%2Fsocial-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Blissmal","download_url":"https://codeload.github.com/Blissmal/social-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244894308,"owners_count":20527678,"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":["approuter","clerk","nextjs","postgresql","prisma-orm","pusherjs"],"created_at":"2025-03-22T02:15:39.161Z","updated_at":"2025-12-30T23:53:51.660Z","avatar_url":"https://github.com/Blissmal.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 🌐 Social App\n\nA modern, full-stack social platform built with **Next.js** and powered by **Clerk**, **Prisma**, **PostgreSQL**, and **Pusher**. Users can customize profiles, create or delete their posts, and chat in real-time with individuals or groups — all in a sleek, responsive interface.\n\n---\n\n## 🔧 Tech Stack\n\n* **Framework**: [Next.js App Router](https://nextjs.org)\n* **Database**: PostgreSQL with [Prisma ORM](https://www.prisma.io/)\n* **Authentication**: [Clerk](https://clerk.dev)\n* **Real-time Communication**: [Pusher Channels](https://pusher.com/channels)\n* **File Uploads**: [UploadThing](https://uploadthing.com)\n* **Styling**: Tailwind CSS + [shadcn/ui](https://ui.shadcn.com)\n* **State Management**: Zustand\n* **Animations**: [Framer Motion](https://www.framer.com/motion/)\n* **Language**: TypeScript\n\n---\n\n## ✨ Features\n\n* 🔐 **Clerk Auth Integration** with protected routes and profile management\n* 👤 **Customizable User Profiles** (name, bio, website)\n* 🖼 **Profile Images** managed via Clerk's user dashboard\n* 📝 **Post Creation \u0026 Deletion** (by the post owner)\n* 💬 **Real-time Chat**\n\n  * 1-on-1 and group conversations\n  * Sidebar with user list (excluding current user)\n  * Dynamic chat usernames and swipe-to-reply support\n* 🟢 **Online/Offline Presence** via Pusher\n* 📎 **Link Previews** using Open Graph metadata\n* ⚡ **Optimistic UI Updates** for faster interactions\n* 🗃️ **Reusable Components** with server/client component separation\n* ⚠️ Built-in loading, error, and not-found handling\n\n---\n\n## 📁 Project Structure Highlights\n\n* `actions/`: Server actions to interact with neon db\n* `app/`: App Router structure with layout and route handlers\n* `components/`: Shared and feature-specific UI components\n* `hooks/`: Custom hooks with defined data accessibility\n* `lib/`: Utility and configuration helpers (e.g., pusher, prisma, auth)\n* `prisma/`: Defined database schema\n\n---\n\n## 🧪 Environment Setup\n\nCreate a `.env` file in the project root:\n\n```env\nNEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=your_clerk_publishable_key\nCLERK_SECRET_KEY=your_clerk_secret_key\n\nDATABASE_URL=your_postgres_database_url\n\nUPLOADTHING_TOKEN=your_uploadthing_token\n\nPUSHER_APP_ID=your_pusher_app_id\nPUSHER_KEY=your_pusher_key\nPUSHER_SECRET=your_pusher_secret\nPUSHER_CLUSTER=your_pusher_cluster\n\nNEXT_PUBLIC_PUSHER_KEY=your_pusher_key\nNEXT_PUBLIC_PUSHER_CLUSTER=your_pusher_cluster\n```\n\n\u003e 🔑 Get Pusher keys from your [Pusher Dashboard](https://dashboard.pusher.com)\n\u003e 🔑 Get Clerk keys from your [Clerk Dashboard](https://dashboard.clerk.dev)\n\n---\n\n## ▶️ Getting Started\n\n```bash\nnpm install\nnpm run dev\n```\n\nThen visit: [http://localhost:3000](http://localhost:3000)\n\n---\n\n## 🚀 Deployment\n\nThe easiest way to deploy is via [Vercel](https://vercel.com):\n\n👉 [Deploy with Vercel](https://vercel.com/new?utm_source=create-next-app\u0026utm_medium=default-template\u0026utm_campaign=create-next-app-readme)\n\nFor more deployment options, check the [Next.js Deployment Guide](https://nextjs.org/docs/app/building-your-application/deploying)\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblissmal%2Fsocial-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblissmal%2Fsocial-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblissmal%2Fsocial-app/lists"}