File size: 362 Bytes
ff99c23
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
# Executa as migrações do banco de dados
echo "Rodando migrações do Alembic..."
alembic upgrade head

# Inicia o servidor Gunicorn (configurado para Hugging Face)
echo "Iniciando Gunicorn..."
exec gunicorn app.main:app \
    --worker-class uvicorn.workers.UvicornWorker \
    --workers 1 \
    --bind 0.0.0.0:7860 \
    --timeout 120