gpt2-indonesian / start.sh
cahya's picture
update the text about the demo
0d55d70
#!/usr/bin/env bash
set -e
if [ "$DEBUG" = true ] ; then
echo 'Debugging - ON'
nodemon --exec streamlit run app.py
else
echo 'Debugging - OFF'
streamlit run app.py
fi