mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
16 lines
312 B
Bash
Executable File
16 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Waiting for db..."
|
|
wait-for-it db:5432 --strict --timeout=0
|
|
echo "Waiting for redis..."
|
|
wait-for-it redis:6379 --strict --timeout=0
|
|
|
|
if [ $# -eq 0 ]; then
|
|
venv/bin/python -u nopaque.py
|
|
elif [ $1 == "flask" ]; then
|
|
echo "$@"
|
|
venv/bin/python -m $@
|
|
else
|
|
echo "Unknown command"
|
|
fi
|