mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
360 B
11 lines
360 B
2 years ago
|
# Run server if its not running
|
||
2 years ago
|
if ! curl --output /dev/null --silent --head --fail http://localhost:31000
|
||
2 years ago
|
then
|
||
|
echo "Starting PlayWright Server"
|
||
2 years ago
|
PWDEBUG=console npx playwright run-server --reuse-browser --port 31000 &
|
||
2 years ago
|
|
||
|
# Wait for server to start
|
||
2 years ago
|
while ! curl --output /dev/null --silent --head --fail http://localhost:31000; do
|
||
2 years ago
|
sleep 0.2
|
||
|
done
|
||
|
fi
|