Skip to content

Commit e8b275f

Browse files
committed
Add logger
1 parent 44c2e83 commit e8b275f

File tree

11 files changed

+364
-15
lines changed

11 files changed

+364
-15
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
dist
3-
.env
3+
.env
4+
logs

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ npm install -g dotenv-cli
4141
6. Create a `.env` file with the webhook url
4242

4343
```
44+
DISCORD_ALERTS_WEBHOOK_URL=YOUR_WEBHOOK_URL_HERE
4445
DISCORD_CHANNEL_WEBHOOK_URL=YOUR_WEBHOOK_URL_HERE
4546
GITHUB_ACCESS_TOKEN=(ask Matthew for this)
4647
```

jest.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ module.exports = {
55
moduleNameMapper: {
66
"^@infrastructure/(.*)$": "<rootDir>/src/infrastructure/$1",
77
"^@src/(.*)$": "<rootDir>/src/$1",
8+
"^@config/(.*)$": "<rootDir>/src/config/$1",
89
},
910
};

0 commit comments

Comments
 (0)