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: about 1 year ago
JSON representation
🚀 A generic microservice that manages the solution notifications
- Host: GitHub
- URL: https://github.com/wilsonneto-dev/notificationservice
- Owner: wilsonneto-dev
- Created: 2022-12-15T01:34:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-15T22:53:12.000Z (over 3 years ago)
- Last Synced: 2025-01-12T19:14:49.224Z (about 1 year ago)
- Topics: email, microservice, nestjs, notifications
- Language: TypeScript
- Homepage:
- Size: 149 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```