Skip to content

Commit 43317e0

Browse files
authored
feat: Cliam upgrade to new major version (#70)
* chore: upgrade cliam to new major version * chore: upgrade cliam to new major.minor version
1 parent 4d62c9e commit 43317e0

File tree

7 files changed

+408
-167
lines changed

7 files changed

+408
-167
lines changed

.cliamrc.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
require('dotenv').config();
2+
module.exports = {
3+
sandbox: true,
4+
variables: {
5+
domain: "https://wwww.example.com",
6+
addresses: {
7+
from: {
8+
name: "YOUR_FROM_NAME",
9+
email: "info@example.com"
10+
},
11+
replyTo: {
12+
name: "YOUR_REPLY_TO_NAME",
13+
email: "test@example.be"
14+
}
15+
}
16+
},
17+
transporters: [
18+
{
19+
id: 'smtp-transporter',
20+
mode: 'smtp',
21+
auth: {
22+
username: "noemie2@ethereal.email",
23+
password: "5cDumYP68aFcpT15uV"
24+
},
25+
options: {
26+
host: "smtp.ethereal.email",
27+
port: 587,
28+
secure: false,
29+
}
30+
}
31+
]
32+
};

.cliamrc.json

Lines changed: 0 additions & 36 deletions
This file was deleted.

README.md

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

0 commit comments

Comments
 (0)