{"id":31068650,"url":"https://github.com/kryptonbd/ngx-todo","last_synced_at":"2026-04-14T14:31:18.732Z","repository":{"id":309733047,"uuid":"937800941","full_name":"KryptonBD/ngx-todo","owner":"KryptonBD","description":"Angular, Express Todo application","archived":false,"fork":false,"pushed_at":"2025-07-18T15:47:42.000Z","size":264,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-03T10:51:22.080Z","etag":null,"topics":["angular","docker","expressjs","jest","ngrx-signals","ngrx-signals-store","postgresql","rest-api","signal-store","todo","typeorm"],"latest_commit_sha":null,"homepage":"","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/KryptonBD.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":"2025-02-23T23:02:12.000Z","updated_at":"2025-08-03T08:57:23.000Z","dependencies_parsed_at":"2025-08-13T14:53:03.307Z","dependency_job_id":"5f1622c1-2317-4171-be83-e1b4a2a5faf4","html_url":"https://github.com/KryptonBD/ngx-todo","commit_stats":null,"previous_names":["kryptonbd/ngx-todo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KryptonBD/ngx-todo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KryptonBD%2Fngx-todo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KryptonBD%2Fngx-todo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KryptonBD%2Fngx-todo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KryptonBD%2Fngx-todo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KryptonBD","download_url":"https://codeload.github.com/KryptonBD/ngx-todo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KryptonBD%2Fngx-todo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31801227,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T11:13:53.975Z","status":"ssl_error","status_checked_at":"2026-04-14T11:13:53.299Z","response_time":153,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["angular","docker","expressjs","jest","ngrx-signals","ngrx-signals-store","postgresql","rest-api","signal-store","todo","typeorm"],"created_at":"2025-09-15T21:56:59.884Z","updated_at":"2026-04-14T14:31:18.712Z","avatar_url":"https://github.com/KryptonBD.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ngx-Todo\n\nTodo application built with Angular, NgRx Signal, Express, PostgresQL, TypeORM\n\n## Features\n\n- Add a new todo\n- Mark a todo as completed or progress\n- Update a todo\n- Delete a todo\n\n## Setup Instructions\n\n### Prerequisites\n\n- Node.js (v22 or higher)\n- npm or yarn package manager\n- PostgreSQL database (only for non-Docker setup)\n- Docker (for Docker setup)\n\n### Docker Setup\n\n1. Clone the repository\n\n2. Rename the `.env.example` file in the root directory to `.env` and update the credentials such as database _name_, _username_, _password_ with your own\n\n3. Start the application using Docker Compose:\n\n```bash\ndocker-compose up --build\n```\n\nThe application will be available at **http://localhost:4200** and the server will be available at **http://localhost:3000**\n\n---\n\n### Alternative Setup (Without Docker)\n\n#### Database Setup\n\n1. Create a PostgreSQL database for the application\n2. Rename the `.env.example` file in the `server` directory to `.env` and update the credentials such as database name, username, password with your own\n\n#### Backend Setup\n\n1. Navigate to the server directory:\n\n```bash\ncd server\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n```\n\n3. Start the development server:\n\n```bash\nnpm run dev\n```\n\nFor production:\n\n```bash\nnpm start\n```\n\nThe server will run on http://localhost:3000 by default.\n\n#### Frontend Setup\n\n1. Navigate to the client directory:\n\n```bash\ncd client\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n```\n\n3. Start the development server:\n\n```bash\nnpm start\n```\n\nThe application will be available at http://localhost:4200.\n\nFor production build:\n\n```bash\nnpm run build\n```\n\n---\n\n### Testing\n\nTo run frontend tests:\n\n```bash\ncd client\nnpm test\n```\n\nTo run backend tests:\n\n```bash\ncd server\nnpm test\n```\n\n---\n\n## Project Structure\n\n```\n├── client/          # Angular frontend application\n│   ├── src/\n│   │   ├── app/\n│   │   │   ├── core/      # Core services and interceptors\n│   │   │   ├── features/  # Feature components\n│   │   │   └── store/     # NgRx Signal store\n│   │   └── shared/        # Shared models\n|   └── Dockerfile         # Docker configuration for Frontend\n└── server/          # Express backend application\n│   ├── src/\n│   │   ├── config/        # Database configuration\n│   │   ├── controllers/   # Route controllers\n│   │   ├── entities/      # TypeORM entities\n│   │   └── routes/        # API routes\n│   └── Dockerfile         # Docker configuration for API\n└── docker-compose.yml  # Docker services configuration\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkryptonbd%2Fngx-todo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkryptonbd%2Fngx-todo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkryptonbd%2Fngx-todo/lists"}