Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wilsonneto-dev/notificationservice

🚀 A generic microservice that manages the solution notifications
https://github.com/wilsonneto-dev/notificationservice

email microservice nestjs notifications

Last synced: 4 days ago
JSON representation

🚀 A generic microservice that manages the solution notifications

Awesome Lists containing this project

README

        

## Side Notes

### Nest.js

```bash
npm i -g @nestjs/cli
nest new notification
```

### Prisma

```bash
# install prisma
npm i prisma -D # CLI
npm i @prisma/client

# init prisma
npx prisma init --datasource-provider sqlserver

# create the database
npx prisma migrate dev

#prisma studio
npx prisma studio
```