
* Proxy backend requests on '/' to the frontend
If the optional extra `proxy` is installed, then the backend can handle all
requests by proxy unrecognized routes to the frontend nextjs server.
* Update lock file
* pre-commit fu
* AppHarness: set config frontend_port and backend_port
* integration: frontend port and backend port should return the same content
with proxying enabled by default in dev mode, both frontend and backend ports
on / should return the same content.
* Retry up to 100 times when proxying to frontend
* Reduce retry attempts to 25
Fix log level passing to subprocess
* scripts/wait_for_listening_port: primarily check HTTP responses
if the port is up or not, we don't really care... the HTTP request needs to
work and not return errors
* aiohttp is an optional dep
* adapt integration.sh for --backend-only (counter integration test)
* woops
* windows WTF?
* scratching my head 🎄
* double WTF windows
* Fix remaining integration tests
38 lines
1.1 KiB
Bash
Executable File
38 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Change directory to the first argument passed to the script
|
|
project_dir=$1
|
|
shift
|
|
pushd "$project_dir" || exit 1
|
|
echo "Changed directory to $project_dir"
|
|
|
|
# So we get stdout / stderr from Python ASAP. Without this, delays can be very long (e.g. on Windows, Github Actions)
|
|
export PYTHONUNBUFFERED=1
|
|
|
|
env_mode=$1
|
|
shift
|
|
check_ports=${1:-3000 8000}
|
|
shift
|
|
|
|
# Start the server in the background
|
|
export TELEMETRY_ENABLED=false
|
|
reflex run --loglevel debug --env "$env_mode" "$@" & pid=$!
|
|
|
|
# Within the context of this bash, $pid_in_bash is what we need to pass to "kill" on exit
|
|
# This is true on all platforms.
|
|
pid_in_bash=$pid
|
|
trap "kill -INT $pid_in_bash ||:" EXIT
|
|
|
|
echo "Started server with PID $pid"
|
|
|
|
# Assume we run from the root of the repo
|
|
popd
|
|
|
|
# In Windows, our Python script below needs to work with the WINPID
|
|
if [ -f /proc/$pid/winpid ]; then
|
|
pid=$(cat /proc/$pid/winpid)
|
|
echo "Windows detected, passing winpid $pid to port waiter"
|
|
fi
|
|
|
|
python scripts/wait_for_listening_port.py $check_ports --timeout=900 --server-pid "$pid" $WAIT_FOR_LISTENING_PORT_ARGS
|