{"id":26348324,"url":"https://github.com/thatguychandan/socialmediaweb","last_synced_at":"2026-05-09T07:02:08.840Z","repository":{"id":205628269,"uuid":"714669234","full_name":"ThatGuyChandan/SocialMediaWeb","owner":"ThatGuyChandan","description":"Designed and developed a feature-rich social media application , enabling users to register, login, create posts, like, save, and delete posts, and leverage a powerful search functionality.","archived":false,"fork":false,"pushed_at":"2025-07-19T14:16:22.000Z","size":2926,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-19T15:41:00.595Z","etag":null,"topics":["appwrite","html","react","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"https://social-media-web-three.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/ThatGuyChandan.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,"zenodo":null}},"created_at":"2023-11-05T14:58:45.000Z","updated_at":"2025-07-19T14:16:25.000Z","dependencies_parsed_at":"2023-11-07T08:31:10.649Z","dependency_job_id":"b62ab76a-2a9f-4c3c-b8de-d070e73c07c0","html_url":"https://github.com/ThatGuyChandan/SocialMediaWeb","commit_stats":null,"previous_names":["thatguychandan/socialmediaweb"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ThatGuyChandan/SocialMediaWeb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatGuyChandan%2FSocialMediaWeb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatGuyChandan%2FSocialMediaWeb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatGuyChandan%2FSocialMediaWeb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatGuyChandan%2FSocialMediaWeb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ThatGuyChandan","download_url":"https://codeload.github.com/ThatGuyChandan/SocialMediaWeb/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatGuyChandan%2FSocialMediaWeb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32810381,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["appwrite","html","react","tailwindcss","typescript"],"created_at":"2025-03-16T08:14:34.067Z","updated_at":"2026-05-09T07:02:08.833Z","avatar_url":"https://github.com/ThatGuyChandan.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GlimmerWave\n\nA modern, production-ready social media application built with React, TypeScript, Appwrite, React Query, and Tailwind CSS.\n\n---\n\n## 🚀 Features\n- User authentication (Sign up, Sign in, Email verification, Forgot/Reset password)\n- Create, edit, delete, and view posts with image uploads\n- Like, save, and comment on posts\n- View user profiles and saved posts\n- Responsive, modern UI with dark mode\n- Robust error handling and toast notifications\n- Protected routes and guest restrictions\n- Real-time updates (where supported)\n\n---\n\n## 🛠️ Tech Stack\n- **Frontend:** React 18, TypeScript, React Router DOM, React Query (TanStack Query), React Hook Form, Zod\n- **Backend:** Appwrite (Cloud or Self-hosted)\n- **Styling:** Tailwind CSS\n- **File Uploads:** Appwrite Storage, react-dropzone\n\n---\n\n## ⚡ Getting Started\n\n### 1. Clone the Repository\n```bash\ngit clone https://github.com/your-username/GlimmerWave.git\ncd GlimmerWave\n```\n\n### 2. Install Dependencies\n```bash\nnpm install\n```\n\n### 3. Environment Variables\nCreate a `.env.local` file in the root directory and add your Appwrite credentials:\n```env\nVITE_APPWRITE_ENDPOINT=https://\u003cyour-appwrite-endpoint\u003e\nVITE_APPWRITE_PROJECT_ID=\u003cyour-project-id\u003e\nVITE_APPWRITE_DATABASE_ID=\u003cyour-database-id\u003e\nVITE_APPWRITE_USER_COLLECTION_ID=\u003cyour-user-collection-id\u003e\nVITE_APPWRITE_POST_COLLECTION_ID=\u003cyour-post-collection-id\u003e\nVITE_APPWRITE_SAVE_COLLECTION_ID=\u003cyour-save-collection-id\u003e\nVITE_APPWRITE_COMMENTS_COLLECTION_ID=\u003cyour-comments-collection-id\u003e\nVITE_APPWRITE_STORAGE_ID=\u003cyour-storage-id\u003e\n```\n\n### 4. Appwrite Setup\n- Create a new project in Appwrite (Cloud or self-hosted).\n- Add Database and create collections for users, posts, saves, and comments.\n- Add Storage bucket for file uploads.\n- Set appropriate permissions for collections and storage (read/write for users, guests as needed).\n- Enable email authentication and configure SMTP for email verification and password reset.\n- Update the environment variables above with your Appwrite project details.\n\n### 5. Run the App\n```bash\nnpm run dev\n```\nVisit [http://localhost:3000](http://localhost:3000) in your browser.\n\n---\n\n## 🧩 Project Structure\n```\nGlimmerWave/\n  src/\n    _auth/           # Auth pages and layouts\n    _root/           # Main app pages\n    components/      # Shared, UI, and form components\n    constants/       # App constants\n    context/         # React context (Auth)\n    lib/             # Appwrite API, React Query, utils\n    types/           # TypeScript types\n    Hooks/           # Custom hooks\n    public/          # Static assets\n```\n\n---\n\n## 🐞 Troubleshooting\n- **401 Unauthorized:** Check Appwrite permissions and session state.\n- **Image not loading:** Use `/view` endpoint for images on Appwrite free plan.\n- **Rate limit (429):** Wait a few minutes before retrying sign-in.\n- **CORS issues:** Add your frontend URL to Appwrite project's CORS settings.\n- **Environment errors:** Ensure all required variables are set in `.env.local`.\n\n---\n\n## 🤝 Contributing\n1. Fork the repo and create your branch: `git checkout -b feature/your-feature`\n2. Commit your changes: `git commit -m 'Add some feature'`\n3. Push to the branch: `git push origin feature/your-feature`\n4. Open a Pull Request\n\n---\n\n## 📄 License\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatguychandan%2Fsocialmediaweb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthatguychandan%2Fsocialmediaweb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatguychandan%2Fsocialmediaweb/lists"}