Skip to content

Commit bcb45c1

Browse files
committed
Set port 3446 for web-evals in production mode
1 parent f47a2b8 commit bcb45c1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/web-evals/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dev": "scripts/check-services.sh && next dev -p 3446",
99
"format": "prettier --write src",
1010
"build": "next build",
11-
"start": "next start",
11+
"start": "next start -p 3446",
1212
"clean": "rimraf tsconfig.tsbuildinfo .next .turbo"
1313
},
1414
"dependencies": {

packages/evals/Dockerfile.web

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ RUN chmod +x /usr/local/bin/entrypoint.sh
6060

6161
ENV DATABASE_URL=postgresql://postgres:password@db:5432/evals_development
6262
ENV REDIS_URL=redis://redis:6379
63-
EXPOSE 3000
63+
EXPOSE 3446
6464
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]

packages/evals/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Start the evals service:
2929
pnpm evals
3030
```
3131

32-
The initial build process can take a minute or two. Upon success you should see output indicating that a web service is running on localhost:3000:
32+
The initial build process can take a minute or two. Upon success you should see output indicating that a web service is running on localhost:3446:
3333
<img width="1182" src="https://github.com/user-attachments/assets/34f25a59-1362-458c-aafa-25e13cdb2a7a" />
3434

3535
Additionally, you'll find in Docker Desktop that database and redis services are running:

0 commit comments

Comments
 (0)