Skip to content

Commit adbb1e1

Browse files
committed
Use 5562 as default port to avoid conflicting common 8000 port
1 parent 6fefd56 commit adbb1e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Then right away you can start LangEvals as a server with:
2424
langevals-server
2525
```
2626

27-
And navigate to `http://localhost:8000/` to try out the evaluators.
27+
And navigate to `http://localhost:5562/` to try out the evaluators.
2828

2929
Alternatively, you can use it as a library as the examples below show.
3030

langevals/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def main():
143143
import gunicorn.app.base
144144

145145
host = "0.0.0.0"
146-
port = int(os.getenv("PORT", 8000))
146+
port = int(os.getenv("PORT", 5562))
147147
workers = get_cpu_count()
148148

149149
class StandaloneApplication(gunicorn.app.base.BaseApplication):

0 commit comments

Comments
 (0)