Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lucas-wa
/
rag-chat
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
02d730d
rag-chat
/
entrypoint.sh
lucas-wa
Initial commit
02d730d
about 1 year ago
raw
Copy download link
history
blame
Safe
Wrap lines
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
"
$@
"