{"id":23701015,"url":"https://github.com/lennetech/todo-example-app","last_synced_at":"2025-10-14T14:14:54.285Z","repository":{"id":65971613,"uuid":"602537337","full_name":"lenneTech/todo-example-app","owner":"lenneTech","description":null,"archived":false,"fork":false,"pushed_at":"2023-02-25T06:19:30.000Z","size":2518,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-03T18:58:10.262Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lenneTech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-02-16T12:27:35.000Z","updated_at":"2023-02-16T12:36:20.000Z","dependencies_parsed_at":"2025-04-07T01:00:53.165Z","dependency_job_id":null,"html_url":"https://github.com/lenneTech/todo-example-app","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/lenneTech/todo-example-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lenneTech%2Ftodo-example-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lenneTech%2Ftodo-example-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lenneTech%2Ftodo-example-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lenneTech%2Ftodo-example-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lenneTech","download_url":"https://codeload.github.com/lenneTech/todo-example-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lenneTech%2Ftodo-example-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265678832,"owners_count":23810120,"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":[],"created_at":"2024-12-30T09:31:30.350Z","updated_at":"2025-10-14T14:14:49.238Z","avatar_url":"https://github.com/lenneTech.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ToDo App Example\n\nWelcome to the ToDo App Example!\nIt is an example for a simple client-server application.\n\nThis is a [lerna](https://lerna.js.org/) [Monorepro](https://monorepo.tools) for App ([Angular](https://angular.io)) and API ([NestJS](https://nestjs.com)).\nBuild with [NgBaseStarter](https://github.com/lenneTech/ng-base-starter) and [Starter for Nest Server](https://github.com/lenneTech/nest-server-starter)\nvia [CLI](https://github.com/lenneTech/cli).\n\nIf you are not yet familiar with Angular or NestJS, we recommend you to have a look at the following sections of our\nacademy [lenne.Learning](https://lennelearning.de):\n\n- [Angular](https://lennelearning.de/lernpfad/angular)\n- [NestJS](https://lennelearning.de/lernpfad/nestjs)\n\nIf you want to learn how this app was created, check out our tutorial:\nhttps://masterminds.work/main/strukturen/angular--nestjs-63ee25eddea158f3cd899cfc\n\n## Requirements\n\n- [Node.js incl. npm](https://nodejs.org):\n  the runtime environment for your server\n\n- [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git):\n  the version control system for your source code\n\n- [MongoDB](https://docs.mongodb.com/manual/installation/#mongodb-community-edition-installation-tutorials)\n  (or any other database compatible with [MikroORM](https://mikro-orm.io)):\n  the database for your objects\n\nInstallation on MacOS:\n\n```\n/bin/bash -c \"$(curl - fsSL https: //raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\nbrew tap mongodb/brew\nbrew update\nbrew install mongodb-community@6.O\nbrew services start mongodb\nbrew install node\nnpm install -g n\n```\n\nTo check if all requirements are met, we can display the versions of the respective software\n(the version may differ from your versions in the following example):\n\n```\nmongod --version\n  db version v6.0.1\n\nnode -v\n  v16.17.0\n\nnpm -v\n  8.15.0\n```\n\n## Initialization of a local instance\n\nClone this repository and install packages:\n\n```\ngit clone https://github.com/lenneTech/todo-example-app\ncd todo-example-app\nnpm run init\n```\n\n## Testing\n\nCheck if the requirements are met by running the tests (in the root directory):\n\n```\nnpm test\n```\n\n## Start\n\nBoth the app and the API are started with the following command (in the root directory):\n\n```\nnpm start\n```\n\nThe following URLs are then accessible:\n\n- App: http://localhost:4200\n- Documentation of the API: http://localhost:3000\n- Playground for using the API: http://localhost:3000/graphql\n\nIf a URL is not reachable, it may be due to an error in the source code or because another process is already\noccupying the corresponding port (3000 / 4200). In this case you can either stop the other process or set another\nport in the configuration of the app or server.\n\n## Architecture\n\nThe architecture of the projects is based on the following structures:\n\n- Both the app and the API can be found with their respective dependencies in the `projects` directory\n- Both technologies are still compatible with their own CLI ([Angular CLI](angular cli) / [NestJS CLI](https://docs.nestjs.com/cli/overview))\n- The [lt CLI](https://github.com/lenneTech/cli) also offers a few benefits regarding the extensions [NgBaseStarter](https://github.com/lenneTech/ng-base-starter) and [Starter for Nest Server](https://github.com/lenneTech/nest-server-starter)\n- To organize the monorepro [lerna](https://lerna.js.org/) is used\n\n## History\n\n- Initialized via `lt create angular`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flennetech%2Ftodo-example-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flennetech%2Ftodo-example-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flennetech%2Ftodo-example-app/lists"}