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