-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(backend): optimize logging by making it less verbose
- Loading branch information
1 parent
b454e83
commit 60b6cd3
Showing
6 changed files
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import { registerAs } from "@nestjs/config"; | ||
|
||
export default registerAs("repoMan", () => ({ | ||
gitlabToken: process.env.GITLAB_TOKEN, | ||
alwaysRebuild: process.env.REPOMANAGER_ALWAYS_REBUILD ?? "{}", | ||
gitAuthor: process.env.GIT_AUTHOR ?? "Chaotic Temeraire", | ||
gitEmail: process.env.GIT_EMAIL ?? "[email protected]", | ||
gitUsername: process.env.GIT_USERNAME ?? "git", | ||
gitlabToken: process.env.CAUR_GITLAB_TOKEN, | ||
schedulerInterval: process.env.REPOMANAGER_SCHEDULE ?? "0 * * * *", | ||
alwaysRebuild: process.env.REPOMANAGER_ALWAYS_REBUILD ?? "{}", | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters