Skip to content

Commit

Permalink
Merge pull request #3204 from metacpan/haarg/run-dev-port-8000
Browse files Browse the repository at this point in the history
run-dev: use port 8000 by default
  • Loading branch information
haarg authored Oct 12, 2024
2 parents ffbab6c + 4f5a25b commit 5a4ec8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run-dev
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
# It starts two web servers. The first on port 5001 using a simple server
# with no concurrency (to aid in debugging) to handle the dynamic requests.
# The second on port 5000 using a "fast" server that can handle many
# The second on port 8000 using a "fast" server that can handle many
# concurrent requests which will serve the static files and proxy to the
# first server.

Expand All @@ -18,9 +18,9 @@
#
# carton exec ./run-dev
#
# Then browse to http://localhost:5000/
# Then browse to http://localhost:8000/

METACPAN_PROXY_LISTEN="localhost:5000"
METACPAN_PROXY_LISTEN="localhost:8000"

while [[ $# -gt 0 ]]; do
case "$1" in
Expand Down

0 comments on commit 5a4ec8c

Please sign in to comment.