Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web-evals/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/evals/Dockerfile.web
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion packages/evals/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading