mirror of
https://github.com/ijaric/voice_assistant.git
synced 2025-07-13 04:53:25 +00:00
8 lines
112 B
Bash
8 lines
112 B
Bash
#!/bin/bash
|
|
|
|
while ! nc -z postgres 5432; do sleep 1; done;
|
|
|
|
alembic upgrade head
|
|
|
|
exec .venv/bin/python -m bin
|