Multiple implementations of the same back-end application. The aim is to provide quick, side-by-side comparisons of different technologies (languages, frameworks, libraries) while preserving consistent business logic across all implementations.
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.
 
 
 
 
 
 

23 lines
614 B

if [ -d .venv ]; then
source .venv/bin/activate
else
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
fi
export TEST_SERVER_ADDRESS="127.0.0.1"
export TEST_SERVER_PORT="50080"
export TEST_API_BASE="api/v1"
# export TEST_ORDER_URL="http://192.168.20.2:8888/"
export TEST_ORDER_URL="http://host.docker.internal:8888/"
export TEST_USER1_ID="1000"
export TEST_USER1_LOGIN="admin"
export TEST_USER1_PASSWORD="admin"
export TEST_USER2_ID="1001"
export TEST_USER2_LOGIN="user"
export TEST_USER2_PASSWORD="user"
export TEST_WRONG_USER_ID="999"
export TEST_ITEM_ID="secret"