Skip to content

Commit 2859e7a

Browse files
Merge pull request #127 from Real-Dev-Squad/localhost-response
Fixed localhost response
2 parents bc2a3b1 + f51f658 commit 2859e7a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

config/development.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*/
55

66
const port = 3000
7+
const localUrl = `http://localhost:${port}`
78

89
module.exports = {
910
port: port,
@@ -12,7 +13,14 @@ module.exports = {
1213

1314
services: {
1415
rdsApi: {
15-
baseUrl: `http://localhost:${port}`
16+
baseUrl: localUrl
17+
},
18+
19+
rdsUi: {
20+
baseUrl: localUrl,
21+
routes: {
22+
authRedirection: '/healthcheck'
23+
}
1624
}
1725
},
1826

0 commit comments

Comments
 (0)