{"id":20382995,"url":"https://github.com/ahmedmohmd/taskify","last_synced_at":"2026-04-12T15:03:22.888Z","repository":{"id":195049118,"uuid":"692093877","full_name":"ahmedmohmd/taskify","owner":"ahmedmohmd","description":"Taskify is a task management application built with Node.js, Express, Prisma, and PostgreSQL. It allows users to create, update, read, and delete tasks and sub-tasks efficiently.","archived":false,"fork":false,"pushed_at":"2023-10-02T14:11:14.000Z","size":1803,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-15T07:57:45.591Z","etag":null,"topics":["backend","express","javascript","nodejs","portfolio","postgresql","prisma","task-manager","typescript"],"latest_commit_sha":null,"homepage":"https://taskify-g5n9.onrender.com/api","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/ahmedmohmd.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":"2023-09-15T14:43:30.000Z","updated_at":"2023-12-03T23:02:55.000Z","dependencies_parsed_at":"2023-09-16T09:44:58.188Z","dependency_job_id":"844ae4ca-abf3-45ec-8661-11a2c7abc37e","html_url":"https://github.com/ahmedmohmd/taskify","commit_stats":null,"previous_names":["ahmedmohmd/taskify"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedmohmd%2Ftaskify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedmohmd%2Ftaskify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedmohmd%2Ftaskify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedmohmd%2Ftaskify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ahmedmohmd","download_url":"https://codeload.github.com/ahmedmohmd/taskify/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241935268,"owners_count":20044826,"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":["backend","express","javascript","nodejs","portfolio","postgresql","prisma","task-manager","typescript"],"created_at":"2024-11-15T02:19:49.628Z","updated_at":"2026-04-12T15:03:22.784Z","avatar_url":"https://github.com/ahmedmohmd.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Taskify - Task Management App\n\n[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n[![GitHub stars](https://img.shields.io/github/stars/ahmedmohmd/taskify)](https://github.com/ahmedmohmd/taskify/stargazers)\n\nTaskify is a task management application built with Node.js, Express, Prisma, and PostgreSQL. It allows users to create, update, read, and delete tasks and sub-tasks efficiently.\n\n\u003e :information_source:\n\u003e This project is solely for showcasing my skills and is not intended for public deployment or use.\n\n## Table of Contents\n\n- [App Features](#app-features)\n- [Getting Started](#getting-started)\n  - [Prerequisites](#prerequisites)\n  - [Installation](#installation)\n- [Usage](#usage)\n- [Routes](#routes)\n  - [Home Route](#home-route)\n  - [Auth Route](#auth-route)\n  - [Users Route](#users-route)\n  - [Tasks Route](#tasks-route)\n  - [Sub Tasks Route](#sub-tasks-route)\n\n## Features\n\n- **User Authentication**: Secure user registration and login functionality.\n- **Task Management**: Create, update, read, and delete tasks.\n- **Subtask Handling**: Manage subtasks associated with each task.\n- **User Profile**: View and update user profiles.\n\n## Getting Started\n\n### Prerequisites\n\nBefore running Taskify, make sure you have the following installed:\n\n- [Node.js](https://nodejs.org/) (v14 or higher)\n- [PostgreSQL](https://www.postgresql.org/) database\n\n### Installation\n\n1. Clone the repository:\n\n   ```shell\n   git clone https://github.com/yourusername/taskify.git\n   cd taskify\n   ```\n\n2. Install dependencies:\n\n   ```shell\n   npm install\n   ```\n\n3. Create a `.env` file in the project root directory and set the following environment variables:\n\n   ```\n   DATABASE_URL=postgresql://yourusername:yourpassword@localhost:5432/yourdatabase\n   JWT_SECRET=yourjwtsecret\n   ```\n\n4. Run database migrations:\n\n   ```shell\n   npx prisma migrate dev\n   ```\n\n5. Start the application:\n\n   ```shell\n   npm start\n   ```\n\nYour Taskify app should now be running at [http://localhost:3000](http://localhost:3000).\n\n## Usage\n\nTo use Taskify, users need to authenticate. You can register a new account or log in with existing credentials using the following routes:\n\n- `POST /api/auth/register` - Register a new user.\n- `POST /api/auth/login` - Log in with an existing user.\n\n## Routes\n\n### Home Route\n\n- `GET /api` - Welcome to Taskify! This route provides a simple welcome message.\n\n### Auth Route\n\n- `POST /api/auth/register` - Register a new user.\n- `POST /api/auth/login` - Log in with an existing user.\n\n### Users Route\n\n- `GET /api/users/:userId` - Retrieve user information.\n- `PATCH /api/users/:userId` - Update user information.\n- `DELETE /api/users/:userId` - Delete user account.\n\n### Tasks Route\n\n- `GET /api/tasks` - Get a list of all tasks.\n- `POST /api/tasks` - Create a new task.\n- `GET /api/tasks/:taskId` - Get details of a specific task.\n- `PATCH /api/tasks/:taskId` - Update a task.\n- `DELETE /api/tasks/:taskId` - Delete a task.\n\n### Sub Tasks Route\n\n- `GET /api/subtasks` - Get a list of all sub-tasks.\n- `POST /api/subtasks` - Create a new sub-task.\n- `GET /api/subtasks/:subTaskId` - Get details of a specific sub-task.\n- `PATCH /api/subtasks/:subTaskId` - Update a sub-task.\n- `DELETE /api/subtasks/:subTaskId` - Delete a sub-task.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmedmohmd%2Ftaskify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahmedmohmd%2Ftaskify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmedmohmd%2Ftaskify/lists"}