generated from CodrJS/ts-npm-template
-
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.
add codr settings; update node module config
- Loading branch information
DylanBulmer
committed
Apr 10, 2023
1 parent
725f5c5
commit 43fffda
Showing
5 changed files
with
49 additions
and
20 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export const CodrConfig: { | ||
svc: { | ||
user: { | ||
user: string; | ||
profile: string; | ||
session: string; | ||
auth: string; | ||
}; | ||
}; | ||
} = { | ||
svc: { | ||
user: { | ||
auth: process.env.CODR_USER_AUTH_SVC_URL as string, | ||
profile: process.env.CODR_USER_PROFILE_SVC_URL as string, | ||
session: process.env.CODR_USER_SESSION_SVC_URL as string, | ||
user: process.env.CODR_USER_USER_SVC_URL as string, | ||
}, | ||
}, | ||
}; |
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