aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--entry_point.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/entry_point.sh b/entry_point.sh
index e78966d..8375d36 100644
--- a/entry_point.sh
+++ b/entry_point.sh
@@ -1,6 +1,9 @@
set -e
+
python create_metricity_db.py
alembic upgrade head
-if [ -z "$skip_metricity" ]; then
+
+shopt -s nocasematch
+if [ "$skip_metricity" != "true" ]; then
poetry run start
fi