Skip to content

Commit

Permalink
change oracle default port from 8080 to 6000
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmssdish committed Dec 20, 2023
1 parent a4fa8fc commit 732f4eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion findr/oracle/oracle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Oracle {
*/
constructor () {
this.app = express()
this.port = parseInt(process.env.API_PORT ?? '8080', 10)
this.port = parseInt(process.env.API_PORT ?? '6000', 10)
this.route = process.env.API_ROUTE ?? '/oracle'
this.setupMiddleware()
this.setupRoutes()
Expand Down

0 comments on commit 732f4eb

Please sign in to comment.