Doron Adler
Hebrew text generator: Science Fiction and Fantasy (GPT-Neo)
363236f
raw history blame
No virus
183 Bytes
#!/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