Skip to content

Commit

Permalink
move workers server to 3002
Browse files Browse the repository at this point in the history
  • Loading branch information
geclos committed Sep 16, 2024
1 parent 9e9ed60 commit 5028864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/workers/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const workers = setupWorkers()

console.log('Workers started')

const port = 3000
const port = process.env.WORKERS_PORT || 3002

Check failure on line 9 in apps/workers/src/server.ts

View workflow job for this annotation

GitHub Actions / lint (20.x)

WORKERS_PORT is not listed as a dependency in turbo.json
const server = http.createServer((req, res) => {
if (req.url === '/health' && req.method === 'GET') {
res.writeHead(200, { 'Content-Type': 'application/json' })
Expand Down

0 comments on commit 5028864

Please sign in to comment.