llm_council_prem / entrypoint.sh
LLM Council Deployer
initial push
41f0f2e
raw
history blame contribute delete
285 Bytes
#!/bin/sh
# Exit immediately if a command exits with a non-zero status
set -e
# Run database migrations
echo "Running database migrations..."
python manage.py migrate
# Exec the container's main process (what's set as CMD in the Dockerfile)
echo "Starting application..."
exec "$@"