Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
melkani
/
eldersafe
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
melkani
commited on
Dec 2, 2025
Commit
2a665a9
·
verified
·
1 Parent(s):
1e06814
Update Kill-switch for app open or close
Browse files
Files changed (1)
hide
show
app.py
+5
-1
app.py
CHANGED
Viewed
@@ -57,4 +57,8 @@ with gr.Blocks() as demo:
57
)
58
59
if __name__ == "__main__":
60
-
demo.launch()
57
)
58
59
if __name__ == "__main__":
60
+
debug = False
61
+
if debug:
62
+
print("Debug mode, not launching")
63
+
else:
64
+
demo.launch()