mirror of
https://github.com/JHUAPL/PINE.git
synced 2026-01-09 20:47:59 -05:00
Including: 1. Generated python documentat in docs/. 2. Starting a new python client in client/. 3. Moving testing data to test/. 4. The addition of Cypress UI tests and pytest tests in test/. 5. A number of bug fixes and improvements.
21 lines
607 B
Bash
Executable File
21 lines
607 B
Bash
Executable File
#!/bin/bash
|
|
# (C) 2019 The Johns Hopkins University Applied Physics Laboratory LLC.
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
source ${DIR}/../.env
|
|
|
|
export BACKEND_PORT
|
|
export EVE_PORT
|
|
export MONGO_PORT
|
|
|
|
if ! wget http://localhost:${BACKEND_PORT}/ping -O /dev/null -o /dev/null || ! wget http://localhost:${EVE_PORT} -O /dev/null -o /dev/null || ! wget http://localhost:${MONGO_PORT} -O /dev/null -o /dev/null; then
|
|
echo "Use docker-compose.test.yml when running docker compose stack."
|
|
exit 1
|
|
fi
|
|
|
|
pushd ${DIR} &> /dev/null
|
|
|
|
./interactive_dev_run.sh
|
|
|
|
popd &> /dev/null
|