Skip to content

Commit

Permalink
fix turbo.json
Browse files Browse the repository at this point in the history
  • Loading branch information
lamminhthien committed Jun 13, 2024
1 parent 4b1dd51 commit b4874bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
- name: Build Docker image
run: |
cd apps/api
docker build .
docker build -f ./apps/api/Dockerfile
3 changes: 2 additions & 1 deletion .github/workflows/build_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ jobs:
- name: Build Docker image
run: |
cd apps/web
docker build .
docker build -f ./apps/web/Dockerfile
2 changes: 1 addition & 1 deletion apps/api/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ const port = process.env.PORT || 3001;
const server = createServer();

server.listen(port, () => {
log(`api running on 3 ${port}`);
log(`api running on 4 ${port}`);
});

0 comments on commit b4874bc

Please sign in to comment.