{"id":16052408,"url":"https://github.com/devsazal/backend-nest-sprint","last_synced_at":"2026-04-11T13:07:03.491Z","repository":{"id":156011767,"uuid":"630153075","full_name":"DevSazal/backend-nest-sprint","owner":"DevSazal","description":"a journey with a focus on exploration and discovery in backend nest development, how we can deal with variety of data sources, ideal foundation with high speed data processing.  {{ NestJS, Redis, MongoDB, Docker }}","archived":false,"fork":false,"pushed_at":"2023-04-28T16:29:34.000Z","size":25,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T04:51:38.001Z","etag":null,"topics":["docker","mongodb","nestjs","redis","typescript"],"latest_commit_sha":null,"homepage":"","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/DevSazal.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-04-19T19:26:05.000Z","updated_at":"2023-05-09T15:30:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"9db864d3-73ea-4153-8e92-d494df901033","html_url":"https://github.com/DevSazal/backend-nest-sprint","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"5aad17ae30046898a378cf674c4046d9990ce45c"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevSazal%2Fbackend-nest-sprint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevSazal%2Fbackend-nest-sprint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevSazal%2Fbackend-nest-sprint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevSazal%2Fbackend-nest-sprint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DevSazal","download_url":"https://codeload.github.com/DevSazal/backend-nest-sprint/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247301450,"owners_count":20916508,"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":["docker","mongodb","nestjs","redis","typescript"],"created_at":"2024-10-09T01:08:53.260Z","updated_at":"2025-12-30T23:07:27.738Z","avatar_url":"https://github.com/DevSazal.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Backend Nest Sprint\n#### exploration of rest api with testable code\n\n\n### Requirements:\n\n* Node.js (18.x)\n* NPM\n* TypeScript, NestJS\n* Git\n* Redis, MongoDB\n* Docker - [Install Docker community edition](https://hub.docker.com/search/?type=edition\u0026offering=community)\n\n#### 🎁 If you are a big fan of docker, just don't wait, clone the repository and use the following [docker](https://docs.docker.com/engine/reference/commandline/compose_up/) commands:\n\n```bash\n# to run with docker-compose.yml\ndocker-compose up\n```\n\n\nLet's clone the repository on your machine.\n\nThe application includes the following files and folders.\n\n- `src` - code for the application written in TypeScript, NestJS, Express.js.\n- `cli` - node cli script which can be performed from terminal.\n- `test` - to test all the features.\n- `docker-compose.dev.yml` - to run in develoment mode.\n- `docker-compose.yml` - to run in production mode.\n- `.env.example` - a sample of .env which can be helpful for configuration.\n\n```bash\n# architecture\n# deep drive in src directory\n\nsrc/\n├── developer/\n│   ├── dto/\n│   │   ├── developer.dto.ts\n│   │   └── index.ts\n│   │\n│   ├── schemas/\n│   │   └── developer.schema.ts\n│   │\n│   ├── developer.controller.ts\n│   ├── developer.module.ts\n│   ├── developer.service.ts\n│   └── in-memory-developer.service.ts\n│\n├── core/\n│   ├── enums/\n│   │   └── EDeveloper.ts\n│   │\n│   └── interfaces/\n│       ├── IDeveloperService.ts\n│       └── IService.ts\n│\n├── app.module.ts\n└── main.ts\n\n```\n\n\n## Installation and Configuration\n\nLet's move to the cloned directory with your terminal.\n\nTo install, build, and start the application for the first time, run the following commands in your shell using `makefile` (only for macOS and Linux):\n\n```bash\nmake install\n```\n\nLet's rename from `.env.example` to `.env` and make sure all the necessary information is correct:\n\n```bash\nPORT=3000\n\nMONGODB_URI=\u003cMongoDB_ATLAS_URI\u003e\nREDIS_URL=\u003cREDIS_CLOUD_URL\u003e\nCACHE_TTL=180\n```\n\nAlready done? Cool! You are almost ready to enjoy the app. ⛳️\n\n\n### Build:\n```\nmake build\n```\n\n### Run:\n```bash\nmake start\n\n# development mode\n# with docker\nmake start-dev\n\n# production mode\nmake start-prod\n```\n\n### Test:\nOh! You wanna trigger testing for the application from terminal\n\n\n```bash\n# e2e test in production\nmake test\n\n# e2e test development\nmake test-dev\n```\n\n### Lint:\n```bash\nmake lint\n\nmake eslint\n```\n\u003cbr\u003e\n\n#### 🎯 I know, you liked it.\nTo learn more, you can use the following commands: \n```\nmake help\n```\n\n#### at the same time, you can use the default `npm` commands like:\n```bash\nnpm i\nnpm run build\n\n# run\nnpm run start\nnpm run start:dev\nnpm run start:prod\n\n# production mode\nnpm run test:e2e\n# development mode\nnpm run test:e2e:dev\n\n# lint\nnpm run lint\nnpm run eslint\n```\n\n\n#### 🎯 Have question about api endpoints? Please check out our [details guide](https://github.com/DevSazal/backend-nest-sprint/blob/main/DEVGUIDE.md)\n\n#### 🥇 Congrats!! You are good to go\n\n#### 🧑‍💻 Stay in touch\n\n- Author - [Sazal Ahamed](https://sazal.vercel.app)\n\n#### tada! 🎉\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevsazal%2Fbackend-nest-sprint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevsazal%2Fbackend-nest-sprint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevsazal%2Fbackend-nest-sprint/lists"}