{"id":18075687,"url":"https://github.com/alejandrov01/ducky","last_synced_at":"2025-09-10T15:41:53.081Z","repository":{"id":257946723,"uuid":"868259879","full_name":"AlejandroV01/Ducky","owner":"AlejandroV01","description":"Ducky.pics is a collaborative event photo-sharing platform where users can create, manage, and share albums with friends and groups. Built with Next.js, FastAPI, and Supabase, it offers an intuitive experience for capturing memories together.","archived":false,"fork":false,"pushed_at":"2024-12-06T22:10:54.000Z","size":9391,"stargazers_count":4,"open_issues_count":13,"forks_count":0,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2025-04-12T08:09:13.401Z","etag":null,"topics":["fastapi","nextjs","python","supabase","typescript"],"latest_commit_sha":null,"homepage":"https://www.ducky.pics/","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/AlejandroV01.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":"2024-10-05T22:27:36.000Z","updated_at":"2024-12-06T22:08:51.000Z","dependencies_parsed_at":"2024-12-03T17:19:24.615Z","dependency_job_id":"e0fbb486-ac47-41d3-b6a5-03ca85039631","html_url":"https://github.com/AlejandroV01/Ducky","commit_stats":null,"previous_names":["alejandrov01/ducky"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlejandroV01%2FDucky","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlejandroV01%2FDucky/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlejandroV01%2FDucky/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlejandroV01%2FDucky/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlejandroV01","download_url":"https://codeload.github.com/AlejandroV01/Ducky/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248537131,"owners_count":21120709,"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":["fastapi","nextjs","python","supabase","typescript"],"created_at":"2024-10-31T11:06:55.439Z","updated_at":"2025-04-12T08:09:37.274Z","avatar_url":"https://github.com/AlejandroV01.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🦆 Ducky\r\n\r\nWelcome to **Ducky**! 🖼️ A collaborative event photo-sharing platform designed for groups and communities to capture and share memories. Think of it as an album-first social experience, making it easy to create, share, and enjoy photo albums for every occasion. 📸\r\n\r\n## 🚀 Project Overview\r\nDucky is built to bring people together through shared albums. With features like album collaboration, role-based access, and image organization, it’s the perfect solution for event photo-sharing. Whether it’s a party, a vacation, or just a day out with friends, Ducky makes it simple and fun to relive the best moments together.\r\n\r\n## 🌐 Ducky Website\r\nCheck out the live site here: [https://www.ducky.pics/](https://www.ducky.pics/)\r\n\r\n## 🧑‍💻 Tech Stack\r\nHere’s a rundown of the technologies that power Ducky:\r\n\r\n- **Frontend**: [Next.js](https://nextjs.org/), **TypeScript**, **TailwindCSS**\r\n- **Backend**: [FastAPI](https://fastapi.tiangolo.com/), **Python**\r\n- **Authentication**: [Auth.js (formerly Next-Auth)](https://next-auth.js.org/)\r\n- **Database**: [Supabase](https://supabase.com/) (Postgres)\r\n- **Image Storage**: Supabase Storage Bucket\r\n\r\n## ✨ Features\r\n- **Sign Up \u0026 Login** with Google and Email authentication\r\n- **Home Page** to view and filter albums\r\n- **Create \u0026 Manage Albums** (public or private)\r\n- **Photo Upload \u0026 Sorting** with Supabase Storage\r\n- **Profile Management** with roles and permissions\r\n- **Admin Controls** for album privacy and user management\r\n- **Responsive Design** for a smooth experience on all devices\r\n\r\n## 🛠️ Setup \u0026 Installation\r\nTo get started with Ducky locally, follow these steps:\r\n\r\n### 1. Clone the Repository\r\n```bash\r\ngit clone https://github.com/AlejandroV01/Ducky.git\r\ncd Ducky\r\n```\r\n\r\n### 2. Install Dependencies\r\nFor both frontend and backend, you'll need to install dependencies.\r\n\r\n#### Frontend (Next.js)\r\n```bash\r\ncd client\r\nnpm install\r\n```\r\n\r\n#### Backend (FastAPI)\r\nFirst, set up a virtual environment, then install dependencies:\r\n```bash\r\ncd server\r\npython3 -m venv env\r\nsource env/bin/activate\r\npip install -r requirements.txt\r\n```\r\n\r\n### 3. Configure Environment Variables\r\nTo run Ducky, you need to configure the environment variables.\r\n\r\n#### Frontend\r\nCreate a `.env.local` file in the `/frontend` directory with the following:\r\n```bash\r\nN/A\r\n```\r\n\r\n#### Backend\r\nCreate a `.env` file in the `/backend` directory with the following:\r\n```bash\r\nSUPABASE_URL=your_supabase_database_url\r\nSUPABASE_KEY=your_supabase_storage_key\r\n```\r\n\r\n### 4. Run the Application\r\n#### Frontend (Next.js)\r\n```bash\r\nnpm run dev\r\n```\r\nThis will start the frontend server on `http://localhost:3000`.\r\n\r\n#### Backend (FastAPI)\r\n```bash\r\nuvicorn main:app --reload\r\n```\r\nThis will start the backend server on `http://localhost:8000`.\r\n\r\n## 📋 Contributing\r\nWe welcome contributions to make Ducky even better! Here’s how you can help:\r\n\r\n1. Fork the repository\r\n2. Create a feature branch: `git checkout -b feature/YourFeature`\r\n3. Commit your changes: `git commit -m 'Add YourFeature'`\r\n4. Push to the branch: `git push origin feature/YourFeature`\r\n5. Open a pull request\r\n\r\nFor any questions or help, feel free to reach out via the Issues section.\r\n\r\n## 📞 Contact \u0026 Support\r\nFor further questions or support, please reach out to the project maintainer at [alexvera0109@gmail.com](mailto:alexvera0109@gmail.com).\r\n\r\n---\r\n\r\nThank you for being a part of Ducky! 🎉 Together, let’s make sharing memories as easy and fun as possible. Happy coding! 💻🚀\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falejandrov01%2Fducky","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falejandrov01%2Fducky","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falejandrov01%2Fducky/lists"}