{"id":20992975,"url":"https://github.com/mo-hassann/trello-app","last_synced_at":"2026-05-17T17:32:08.566Z","repository":{"id":251589897,"uuid":"790379303","full_name":"mo-hassann/trello-app","owner":"mo-hassann","description":"A Trello-inspired task management application built with Next.js, Prisma, Server Actions, and Auth.js, allowing users to create, organize, and manage tasks across boards with real-time updates and secure authentication.","archived":false,"fork":false,"pushed_at":"2024-09-18T08:22:16.000Z","size":1494,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-13T12:35:17.647Z","etag":null,"topics":["authjs","nextjs","prisma","server-actions","trello","trello-clone","typescript"],"latest_commit_sha":null,"homepage":"https://trello-app-v1.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/mo-hassann.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-04-22T19:16:57.000Z","updated_at":"2024-09-18T08:22:19.000Z","dependencies_parsed_at":"2024-08-04T09:44:07.389Z","dependency_job_id":"c509f7ee-62e6-4b87-8c52-ee4251fa87e4","html_url":"https://github.com/mo-hassann/trello-app","commit_stats":null,"previous_names":["mo-hassann/trello-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mo-hassann/trello-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mo-hassann%2Ftrello-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mo-hassann%2Ftrello-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mo-hassann%2Ftrello-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mo-hassann%2Ftrello-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mo-hassann","download_url":"https://codeload.github.com/mo-hassann/trello-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mo-hassann%2Ftrello-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271061344,"owners_count":24692511,"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","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"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":["authjs","nextjs","prisma","server-actions","trello","trello-clone","typescript"],"created_at":"2024-11-19T07:13:19.378Z","updated_at":"2026-05-17T17:32:03.528Z","avatar_url":"https://github.com/mo-hassann.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![alt text](https://github.com/mo-hassann/my-portfolio/blob/master/public/projects-imgs/trello.png)\n\n# Trello App\n\nA Trello-inspired task management application built with Next.js, Prisma, Server Actions, and Auth.js. This app allows users to create boards, lists, and cards to organize tasks efficiently.\n\n## ✨ Features\n\n- **User Authentication**: Secure user authentication and session management using Auth.js.\n- **Create Boards and Lists**: Users can create multiple boards and lists to organize their tasks.\n- **Task Management**: Create, edit, delete, and move tasks (cards) within lists and across boards.\n- **Real-time Updates**: Tasks and boards are updated in real-time using Server Actions.\n- **Responsive Design**: Fully responsive design that works on all devices.\n\n## 🛠️ Tech Stack\n\n- **Next.js**: A React framework for building server-rendered and statically exported React applications.\n- **Prisma**: A next-generation ORM for Node.js and TypeScript for database management.\n- **Server Actions**: Next.js feature for server-side logic to handle data mutations and fetching.\n- **Auth.js**: A library for handling user authentication in JavaScript applications.\n\n## 📦 Getting Started\n\nTo get a local copy of this project up and running, follow these steps.\n\n### Prerequisites\n\n- **Node.js** (v16.x or higher)\n- **npm** or **yarn** as your package manager\n- **PostgreSQL** (or another supported SQL database)\n\n### 🚀 Installation\n\n1. **Clone the repository:**\n\n    ```bash\n    git clone https://github.com/mo-hassann/trello-app.git\n    cd trello-app\n    ```\n\n2. **Install dependencies:**\n\n    Using npm:\n\n    ```bash\n    npm install\n    ```\n\n    Or using yarn:\n\n    ```bash\n    yarn install\n    ```\n\n3. **Set up environment variables:**\n\n    Create a `.env` file in the root directory and add the following variables:\n\n    ```env\n    AUTH_TRUST_HOST=true\n    DATABASE_URL=your_database_url\n    AUTH_SECRET=any_random_secret\n    ```\n\n4. **Run Prisma migrations:**\n\n    Ensure your database is running and then run:\n\n    ```bash\n    npx prisma migrate dev\n    ```\n\n5. **Start the development server:**\n\n    Using npm:\n\n    ```bash\n    npm run dev\n    ```\n\n    Or using yarn:\n\n    ```bash\n    yarn dev\n    ```\n\n    Open [http://localhost:3000](http://localhost:3000) to view the app in your browser.\n\n## 📖 Usage\n\n### Running the app\n\n- **Development mode:** `npm run dev` or `yarn dev`\n- **Production mode:** `npm run build \u0026\u0026 npm start` or `yarn build \u0026\u0026 yarn start`\n\n### Customization\n\nTo customize your Trello app:\n\n1. **Update Styles**: Edit the CSS files in the `styles` folder to change the look and feel of the app.\n2. **Modify Components**: Modify React components in the `components` folder to add new features or change existing ones.\n3. **Update API Endpoints**: Update server actions in the `pages/api` directory to customize server-side logic.\n\n## 🤝 Contributing\n\nWe welcome contributions to this project. To contribute:\n\n1. **Fork the repository.**\n2. **Create a new branch** (`git checkout -b feature/your-feature-name`).\n3. **Make your changes** and commit them (`git commit -m 'Add some feature'`).\n4. **Push to the branch** (`git push origin feature/your-feature-name`).\n5. **Open a pull request**.\n\nPlease make sure to update tests as appropriate.\n\n## 🐛 Issues\n\nIf you encounter any issues while using or setting up the project, please check the [Issues](https://github.com/mo-hassann/trello-app/issues) section to see if it has already been reported. If not, feel free to open a new issue detailing the problem.\n\nWhen reporting an issue, please include:\n\n- A clear and descriptive title.\n- A detailed description of the problem.\n- Steps to reproduce the issue.\n- Any relevant logs or screenshots.\n- The environment in which the issue occurs (OS, browser, Node.js version, etc.).\n\n## 📜 License\n\nDistributed under the MIT License. See `LICENSE` for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmo-hassann%2Ftrello-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmo-hassann%2Ftrello-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmo-hassann%2Ftrello-app/lists"}