Skip to content

Commit

Permalink
Merge pull request #45 from seanbirchall/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
seanbirchall authored Nov 29, 2024
2 parents af607b5 + f01c86c commit f8f3d23
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions service/auth/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ app.get('/callback', async (req, res) => {

try {
// Exchange the authorization code for tokens
console.log(process.env.COGNITO_TOKEN_URL);
console.log(process.env.COGNITO_CLIENT_ID);
console.log(process.env.COGNITO_CLIENT_SECRET);
const response = await axios.post(
process.env.COGNITO_TOKEN_URL,
new URLSearchParams({
Expand Down
2 changes: 1 addition & 1 deletion service/git/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ app.post('/webhook', async (req, res) => {
});

// Start server
app.listen(3000, () => {
app.listen(3002, () => {
console.log('git service is running on port 3000');
});

0 comments on commit f8f3d23

Please sign in to comment.