{"id":28282813,"url":"https://github.com/ngodingbang/rwid-nestjs","last_synced_at":"2025-08-23T01:06:09.523Z","repository":{"id":293280809,"uuid":"983526893","full_name":"ngodingbang/rwid-nestjs","owner":"ngodingbang","description":"Learn NestJS from basic.","archived":false,"fork":false,"pushed_at":"2025-06-02T14:26:01.000Z","size":429,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-17T06:36:34.379Z","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/ngodingbang.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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-05-14T14:09:38.000Z","updated_at":"2025-06-02T14:26:06.000Z","dependencies_parsed_at":"2025-05-14T15:40:10.953Z","dependency_job_id":null,"html_url":"https://github.com/ngodingbang/rwid-nestjs","commit_stats":null,"previous_names":["ngodingbang/rwid-nestjs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ngodingbang/rwid-nestjs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngodingbang%2Frwid-nestjs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngodingbang%2Frwid-nestjs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngodingbang%2Frwid-nestjs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngodingbang%2Frwid-nestjs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ngodingbang","download_url":"https://codeload.github.com/ngodingbang/rwid-nestjs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngodingbang%2Frwid-nestjs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271727505,"owners_count":24810561,"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-22T02:00:08.480Z","response_time":65,"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":[],"created_at":"2025-05-21T15:20:05.545Z","updated_at":"2025-08-23T01:06:09.511Z","avatar_url":"https://github.com/ngodingbang.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RWID NestJS\n\n[![License](https://badgen.net/github/license/ngodingbang/rwid-nestjs 'License')](LICENSE.md)\n[![Release](https://badgen.net/github/release/ngodingbang/rwid-nestjs 'Release')](https://github.com/ngodingbang/rwid-nestjs/releases)\n[![Test Status](https://github.com/ngodingbang/rwid-nestjs/actions/workflows/main.yml/badge.svg 'Test Status')](https://github.com/ngodingbang/rwid-nestjs/actions/workflows/main.yml)\n[![Coverage Status](https://codecov.io/gh/ngodingbang/rwid-nestjs/graph/badge.svg?token=6TZK7PQBR5 'Coverage Status')](https://codecov.io/gh/ngodingbang/rwid-nestjs)\n\n## Table of contents\n\n- [RWID NestJS](#rwid-nestjs)\n  - [Table of contents](#table-of-contents)\n  - [Description](#description)\n  - [Requirements](#requirements)\n  - [Project setup](#project-setup)\n  - [Compile and run the project](#compile-and-run-the-project)\n  - [Database](#database)\n    - [Initial setup](#initial-setup)\n    - [Migrations](#migrations)\n  - [Run tests](#run-tests)\n  - [Stay in touch](#stay-in-touch)\n  - [API documentation](#api-documentation)\n  - [Changelog](#changelog)\n  - [License](#license)\n\n## Description\n\nLearn [NestJS](https://nestjs.com) from basic.\n\n## Requirements\n\n- [![Node.js](https://img.shields.io/badge/Node.js%20^22.15.0-43853D?logo=node.js\u0026logoColor=white 'Node.js')](https://nodejs.org)\n- [![pnpm](https://img.shields.io/badge/pnpm%20^10.11.0-F69220?logo=pnpm\u0026logoColor=white 'pnpm')](https://pnpm.io)\n- [![PostgreSQL](https://img.shields.io/badge/PostgreSQL%2017.5-316192?logo=postgresql\u0026logoColor=white 'PostgreSQL')](https://www.postgresql.org)\n\n## Project setup\n\n```bash\n$ cp .env.example .env # Copy .env.example to .env\n$ pnpm install\n```\n\n## Compile and run the project\n\n```bash\n# development\n$ pnpm run start\n\n# watch mode\n$ pnpm run start:dev\n\n# production mode\n$ pnpm run build # Build the project (skip this if `/dist` folder is already exists)\n$ pnpm run start:prod\n```\n\nOpen your browser and navigate to [localhost:3000](http://localhost:3000).\n\n## Database\n\n### Initial setup\n\n```bash\n# create database and run migrations\n$ pnpm exec prisma migrate dev\n\n# run seed\n$ pnpm exec prisma db seed\n```\n\nMake sure you have the PostgreSQL environment and already setup these .env configurations below before running the commands above.\n\n```properties\nDB_URL=postgresql://root:password@localhost:5432/rwid_nestjs?schema=public\n```\n\nThis project is using [Prisma](https://prisma.io) as the database tool. Please read their documentation for more information.\n\n### Migrations\n\nRun this command below to generate a new migration file.\n\n```bash\n$ pnpm run migration:dev\n```\n\nAll migrations are stored in `src/prisma/migrations` directory. The migrations directory has the following structure:\n\n```bash\nsrc/\n└── prisma/\n    └── migrations/\n        └── 20250526155757_0_2_0\n            └── migration.sql\n        └── migration_lock.toml\n```\n\n## Run tests\n\n```bash\n# unit tests\n$ pnpm run test\n\n# e2e tests\n$ pnpm run test:e2e\n\n# test coverage\n$ pnpm run test:cov\n```\n\n## Stay in touch\n\n- Author - [NgodingBang](https://threads.net/@ngodingbang)\n- Website - [https://ngodingbang.my.id](https://ngodingbang.my.id)\n\n## API documentation\n\nYou can access the API documentation here:\n\n- Development - [localhost:3000/api/docs](http://localhost:3000/api/docs).\n- Staging - TBD.\n- Production - TBD.\n\n## Changelog\n\nYou can read the changelog [here](CHANGELOG.md).\n\n## License\n\nYou can read the license [here](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fngodingbang%2Frwid-nestjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fngodingbang%2Frwid-nestjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fngodingbang%2Frwid-nestjs/lists"}