Skip to content
This repository has been archived by the owner on Jan 27, 2024. It is now read-only.

Commit

Permalink
Update index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
andrrsin committed May 1, 2023
1 parent a6daebf commit 3459a58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions restapi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ app.use("/solid", solid);
app.use("/users", users);
app.use("/landmarks",landmarks );

app.listen(process.env.API_PORT, ():void => {
console.log('Restapi listening on '+ process.env.API_PORT);
app.listen(8800, ():void => {
console.log('Restapi listening on 8800');
}).on("error",(error:Error)=>{
console.error('Error occured: ' + error.message);
});
Expand Down

0 comments on commit 3459a58

Please sign in to comment.