Skip to content

Commit

Permalink
feat: Cliam upgrade to new major version (#70)
Browse files Browse the repository at this point in the history
* chore: upgrade cliam to new major version

* chore: upgrade cliam to new major.minor version
  • Loading branch information
steve-lebleu committed Feb 22, 2024
1 parent 4d62c9e commit 43317e0
Show file tree
Hide file tree
Showing 7 changed files with 408 additions and 167 deletions.
32 changes: 32 additions & 0 deletions .cliamrc.js
@@ -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
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

0 comments on commit 43317e0

Please sign in to comment.