Skip to content

Commit f1efca5

Browse files
committed
updating
1 parent a8b7021 commit f1efca5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
POSTGRES_URI: postgres://admin:password@postgres:5432/smartbrain
1111
REDIS_URI: redis://redis:6379
1212
ports:
13-
- "80:80"
13+
- "3000:3000"
1414
volumes:
1515
- ./:/usr/src/smartbrainapi
1616

server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ app.put('/image', cors(), requireAuth, (req, res)=>{handleImage(req, res, db)})
3232
app.post('/imageurl',cors(), requireAuth, (req, res)=>{handleApiCall(req, res)})
3333
app.put('/signout', cors(), requireAuth, (req, res)=>{handleSignOut(req, res)})
3434

35-
app.listen(80,()=>{
35+
app.listen(3000,()=>{
3636
console.log(`app is running on port 80`);
3737
});
3838

0 commit comments

Comments
 (0)