Skip to content

Commit 4f5a25b

Browse files
committed
run-dev: use port 8000 by default
Port 5000 is always in use on macOS, so use 8000 instead. 8000 matches what docker-compose uses.
1 parent ffbab6c commit 4f5a25b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: run-dev

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# It starts two web servers. The first on port 5001 using a simple server
88
# with no concurrency (to aid in debugging) to handle the dynamic requests.
9-
# The second on port 5000 using a "fast" server that can handle many
9+
# The second on port 8000 using a "fast" server that can handle many
1010
# concurrent requests which will serve the static files and proxy to the
1111
# first server.
1212

@@ -18,9 +18,9 @@
1818
#
1919
# carton exec ./run-dev
2020
#
21-
# Then browse to http://localhost:5000/
21+
# Then browse to http://localhost:8000/
2222

23-
METACPAN_PROXY_LISTEN="localhost:5000"
23+
METACPAN_PROXY_LISTEN="localhost:8000"
2424

2525
while [[ $# -gt 0 ]]; do
2626
case "$1" in

0 commit comments

Comments
 (0)