Light_generator / start.sh
orendar's picture
initial commit
7c6b8f3
raw
history blame contribute delete
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