mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Set port 3446 for web-evals in production mode (#8288)
This commit is contained in:
parent
205f3e4242
commit
25f61943ca
3 changed files with 3 additions and 3 deletions
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue