Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/wilsonneto-dev/notificationservice
- Owner: wilsonneto-dev
- Created: 2022-12-15T01:34:20.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-15T22:53:12.000Z (about 2 years ago)
- Last Synced: 2024-11-13T10:47:08.780Z (2 months 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
```