Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
orendar
/
Light_generator
like
0
Runtime error
App
Files
Files
Community
57d4634
Light_generator
/
start.sh
orendar
initial commit
7c6b8f3
over 2 years ago
raw
Copy download link
history
blame
Safe
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