File size: 345 Bytes
02d730d 06b7eea 6e06893 06b7eea 02d730d 6e06893 02d730d 06b7eea |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#!/bin/bash
# Verifique o token
# python3 /code/server/check_token.py $HF_TOKEN
# python3 /code/server/ngrok_config.py $NGROK_TOKEN
huggingface-cli login --token $HF_KEY
# 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 "$@"
|