mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
10 lines
238 B
Bash
10 lines
238 B
Bash
|
#!/bin/bash
|
||
|
echo "Waiting for db..."
|
||
|
wait-for-it "${NOPAQUE_DB_HOST}:${NOPAQUE_DB_PORT:-5432}" --strict --timeout=0
|
||
|
echo "Waiting for nopaque..."
|
||
|
wait-for-it nopaque:5000 --strict --timeout=0
|
||
|
|
||
|
source venv/bin/activate
|
||
|
|
||
|
python nopaqued.py
|