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

feat: Cliam upgrade to new major version #70

Merged
merged 2 commits into from
Feb 22, 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
32 changes: 32 additions & 0 deletions .cliamrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
require('dotenv').config();
module.exports = {
sandbox: true,
variables: {
domain: "https://wwww.example.com",
addresses: {
from: {
name: "YOUR_FROM_NAME",
email: "info@example.com"
},
replyTo: {
name: "YOUR_REPLY_TO_NAME",
email: "test@example.be"
}
}
},
transporters: [
{
id: 'smtp-transporter',
mode: 'smtp',
auth: {
username: "noemie2@ethereal.email",
password: "5cDumYP68aFcpT15uV"
},
options: {
host: "smtp.ethereal.email",
port: 587,
secure: false,
}
}
]
};
36 changes: 0 additions & 36 deletions .cliamrc.json

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Thanks to Daniel F. Sousa for inspiration with her [Express ES2017 REST API boil
- **Basics**
- **Clear & clean code architecture** with classic layers such controllers, services, repositories, models, ...
- **Object Relational Mapping** with [typeorm](https://typeorm.io/#/).
- **Entity generation** with [rsgen](https://github.com/konfer-be/rsgen).
- **Entity generation** with [rsgen](https://github.com/steve-lebleu/rsgen).
- **Business validation** with self designed business members.
- **Logs management** with [morgan](https://github.com/expressjs/morgan) and [winston](https://github.com/winstonjs/winston).
- **Changelog completion** with [auto-changelog](https://www.npmjs.com/package/auto-changelog).
Expand All @@ -38,7 +38,7 @@ Thanks to Daniel F. Sousa for inspiration with her [Express ES2017 REST API boil
- **Authentication**
- **JWT authentication process** with [passport.js](http://www.passportjs.org/).
- **oAuth authentication process** with [passport.js](http://www.passportjs.org/).
- **Sending transactional emails** with [cliam](https://github.com/konfer-be/cliam).
- **Sending transactional emails** with [cliam](https://github.com/steve-lebleu/cliam).
- **Performances**
- **HTTP request cache** with [memory-cache](https://www.npmjs.com/package/memory-cache).
- **Database query cache** with [typeorm caching](https://github.com/typeorm/typeorm/blob/master/docs/caching.md).
Expand Down
Loading
Loading