gpt2-indonesian / start.sh
cahya's picture
add apps files
c6d338c
raw
history blame
No virus
185 Bytes
#!/usr/bin/env bash
set -e
if [ "$DEBUG" = true ] ; then
echo 'Debugging - ON'
nodemon --exec streamlit run main.py
else
echo 'Debugging - OFF'
streamlit run main.py
fi