Skip to content

Commit cfbdb8a

Browse files
committed
Revert exposed -web port from 8000 to 5001
1 parent e2f5645 commit cfbdb8a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
- 'web-assets:/app/root/assets/'
1717
- '/app/local'
1818
ports:
19-
- '8000:80'
19+
- '5001:80'
2020
environment:
2121
# default is 120, shorten to work with compose label
2222
COLUMNS: 96

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default defineConfig({
2626
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
2727
use: {
2828
/* Base URL to use in actions like `await page.goto('/')`. */
29-
baseURL: "http://127.0.0.1:8000",
29+
baseURL: "http://127.0.0.1:5001",
3030

3131
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
3232
trace: "on-first-retry",

run-dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
#
1919
# carton exec ./run-dev
2020
#
21-
# Then browse to http://localhost:8000/
21+
# Then browse to http://localhost:5001/
2222

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

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

0 commit comments

Comments
 (0)