Set port 3446 for web-evals in production mode (#8288)

This commit is contained in:
Chris Estreich 2025-09-24 08:43:05 -07:00 committed by GitHub
parent 205f3e4242
commit 25f61943ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@
"dev": "scripts/check-services.sh && next dev -p 3446",
"format": "prettier --write src",
"build": "next build",
"start": "next start",
"start": "next start -p 3446",
"clean": "rimraf tsconfig.tsbuildinfo .next .turbo"
},
"dependencies": {

View file

@ -60,5 +60,5 @@ RUN chmod +x /usr/local/bin/entrypoint.sh
ENV DATABASE_URL=postgresql://postgres:password@db:5432/evals_development
ENV REDIS_URL=redis://redis:6379
EXPOSE 3000
EXPOSE 3446
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]

View file

@ -29,7 +29,7 @@ Start the evals service:
pnpm evals
```
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:
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:
<img width="1182" src="https://github.com/user-attachments/assets/34f25a59-1362-458c-aafa-25e13cdb2a7a" />
Additionally, you'll find in Docker Desktop that database and redis services are running: