[PR #292] [CLOSED] feat: added nestjs code base #360

Closed
opened 2025-11-06 14:24:36 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/292
Author: @leofvo
Created: 9/29/2022
Status: Closed

Base: masterHead: master


📝 Commits (1)

  • c88bba3 feat: added nestjs code base

📊 Changes

24 files changed (+15301 additions, -0 deletions)

View changed files

nestjs/.docker/docker-compose.yml (+9 -0)
nestjs/README.md (+64 -0)
nestjs/app/.dockerignore (+1 -0)
nestjs/app/.eslintrc.js (+25 -0)
nestjs/app/.gitignore (+35 -0)
nestjs/app/.prettierrc (+4 -0)
nestjs/app/Dockerfile (+41 -0)
nestjs/app/README.md (+73 -0)
nestjs/app/nest-cli.json (+5 -0)
nestjs/app/package-lock.json (+14802 -0)
nestjs/app/package.json (+74 -0)
nestjs/app/src/app.controller.spec.ts (+22 -0)
nestjs/app/src/app.controller.ts (+12 -0)
nestjs/app/src/app.module.ts (+12 -0)
nestjs/app/src/app.service.ts (+8 -0)
nestjs/app/src/config/configuration.ts (+3 -0)
nestjs/app/src/health/health.controller.ts (+22 -0)
nestjs/app/src/health/health.module.ts (+10 -0)
nestjs/app/src/main.ts (+14 -0)
nestjs/app/test/app.e2e-spec.ts (+24 -0)

...and 4 more files

📄 Description

Added a nestjs template with some basic features

  • support healthcheck
  • support custom port

Signed-off-by: leofvo leofvo@proton.me


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/docker/awesome-compose/pull/292 **Author:** [@leofvo](https://github.com/leofvo) **Created:** 9/29/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`c88bba3`](https://github.com/docker/awesome-compose/commit/c88bba304d287dbc25cf25bc63f1719bf6de7d71) feat: added nestjs code base ### 📊 Changes **24 files changed** (+15301 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `nestjs/.docker/docker-compose.yml` (+9 -0) ➕ `nestjs/README.md` (+64 -0) ➕ `nestjs/app/.dockerignore` (+1 -0) ➕ `nestjs/app/.eslintrc.js` (+25 -0) ➕ `nestjs/app/.gitignore` (+35 -0) ➕ `nestjs/app/.prettierrc` (+4 -0) ➕ `nestjs/app/Dockerfile` (+41 -0) ➕ `nestjs/app/README.md` (+73 -0) ➕ `nestjs/app/nest-cli.json` (+5 -0) ➕ `nestjs/app/package-lock.json` (+14802 -0) ➕ `nestjs/app/package.json` (+74 -0) ➕ `nestjs/app/src/app.controller.spec.ts` (+22 -0) ➕ `nestjs/app/src/app.controller.ts` (+12 -0) ➕ `nestjs/app/src/app.module.ts` (+12 -0) ➕ `nestjs/app/src/app.service.ts` (+8 -0) ➕ `nestjs/app/src/config/configuration.ts` (+3 -0) ➕ `nestjs/app/src/health/health.controller.ts` (+22 -0) ➕ `nestjs/app/src/health/health.module.ts` (+10 -0) ➕ `nestjs/app/src/main.ts` (+14 -0) ➕ `nestjs/app/test/app.e2e-spec.ts` (+24 -0) _...and 4 more files_ </details> ### 📄 Description Added a nestjs template with some basic features + support healthcheck + support custom port Signed-off-by: leofvo <leofvo@proton.me> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-06 14:24:36 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-compose#360