Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added: Vercel.json file to deploy #47

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .github/workflows/code-review-gpt.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

This project is a template for NestJs developers who want to start a new project using Clean Architecture principles and scalable patterns.


## Features List 🚀

TODO IS HERE!!
Expand All @@ -29,7 +28,6 @@ TODO IS HERE!!
- [Clean Architecture - Frontend Structure](https://dev.to/bespoyasov/clean-architecture-on-frontend-4311)
- [Full Clean Architecture Explained](https://docs.google.com/drawings/d/1E_hx5B4czRVFVhGJbrbPDlb_JFxJC8fYB86OMzZuAhg/edit)


## [![Repography logo](https://images.repography.com/logo.svg)](https://repography.com) / Recent activity [![Time period](https://images.repography.com/51691792/jovicon/nestjs-clean-architecture-event-driven-template/recent-activity/KZWYrbxoHDfbz6c0ZN2T5hESuNbpkMbbdVeF9U0B2ck/eGfBR628vaP1dbiC0egJij8VZmydu8mzyxQQwoSrCBE_badge.svg)](https://repography.com)
[![Timeline graph](https://images.repography.com/51691792/jovicon/nestjs-clean-architecture-event-driven-template/recent-activity/KZWYrbxoHDfbz6c0ZN2T5hESuNbpkMbbdVeF9U0B2ck/eGfBR628vaP1dbiC0egJij8VZmydu8mzyxQQwoSrCBE_timeline.svg)](/~https://github.com/jovicon/nestjs-clean-architecture-event-driven-template/commits)
[![Issue status graph](https://images.repography.com/51691792/jovicon/nestjs-clean-architecture-event-driven-template/recent-activity/KZWYrbxoHDfbz6c0ZN2T5hESuNbpkMbbdVeF9U0B2ck/eGfBR628vaP1dbiC0egJij8VZmydu8mzyxQQwoSrCBE_issues.svg)](/~https://github.com/jovicon/nestjs-clean-architecture-event-driven-template/issues)
Expand Down
16 changes: 16 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"version": 2,
"builds": [
{
"src": "src/main.ts",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "src/main.ts",
"methods": ["GET", "POST", "PUT", "DELETE"]
}
]
}