Update port number

Prevents collisions with other running projects, such as my personal
website that uses Sculpin and also port 8000 by default.
This commit is contained in:
Oliver Davies 2024-01-15 08:00:00 +00:00
parent 75b17fd565
commit ea2c228806
2 changed files with 2 additions and 2 deletions

2
.tmux
View file

@ -18,7 +18,7 @@ tmux new-session -d -s "${session_name}" -n vim -c "${session_path}"
# 1. Main window: Vim, server, shell
tmux send-keys -t "${session_name}:vim" "nvim +GoToFile" Enter
tmux split-pane -t "${session_name}:vim" -h -c "${session_path}" -p 40
tmux send-keys -t "${session_name}:vim.right" "php -S 0.0.0.0:8000 -t web" Enter
tmux send-keys -t "${session_name}:vim.right" "php -S 0.0.0.0:9000 -t web" Enter
# 2. General shell use.
tmux new-window -t "${session_name}" -c "${session_path}"

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="web/core/tests/bootstrap.php" colors="true">
<php>
<env name="SIMPLETEST_BASE_URL" value="http://localhost:8000"/>
<env name="SIMPLETEST_BASE_URL" value="http://localhost:9000"/>
<env name="SIMPLETEST_DB" value="sqlite://localhost//dev/shm/test.sqlite"/>
<ini name="error_reporting" value="32767"/>
<ini name="memory_limit" value="-1"/>