修改端口9001为9002

This commit is contained in:
xdragon 2024-09-05 15:33:38 +08:00
parent 8497f652bc
commit a5cf527e8d
47 changed files with 109 additions and 109 deletions

View file

@ -28,7 +28,7 @@ To run the backend tests, run the following from the Etherpad working directory:
(cd src && pnpm test)
```
To run the frontend tests, visit: http://localhost:9001/tests/frontend/
To run the frontend tests, visit: http://localhost:9002/tests/frontend/
## Copyright and License

View file

@ -81,7 +81,7 @@ jobs:
pnpm run prod &
connected=false
can_connect() {
curl -sSfo /dev/null http://localhost:9001/ || return 1
curl -sSfo /dev/null http://localhost:9002/ || return 1
connected=true
}
now() { date +%s; }