rag-chat / entrypoint.sh
lucas-wa
Initial commit
02d730d
raw
history blame
238 Bytes
#!/bin/bash
# Verifique o token
python /code/check_token.py $HF_TOKEN
# Verifique o status de saída
if [ $? -eq 0 ]; then
echo "Login bem-sucedido!"
else
echo "Falha no login."
exit 1
fi
# Inicie o seu aplicativo
exec "$@"