Spaces:
Running
Running
MugdhaV commited on
Commit ·
cd96d6d
1
Parent(s): ebd6cba
Fix class name: SecurityAuditorApp -> ModernSecurityAuditorApp
Browse files
app.py
CHANGED
|
@@ -3,8 +3,12 @@ HuggingFace Spaces Entry Point for Security Auditor
|
|
| 3 |
Launches the Gradio interface with Modal backend integration
|
| 4 |
"""
|
| 5 |
|
| 6 |
-
from gradio_app import
|
| 7 |
|
| 8 |
if __name__ == "__main__":
|
| 9 |
-
app =
|
| 10 |
-
app.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
Launches the Gradio interface with Modal backend integration
|
| 4 |
"""
|
| 5 |
|
| 6 |
+
from gradio_app import ModernSecurityAuditorApp
|
| 7 |
|
| 8 |
if __name__ == "__main__":
|
| 9 |
+
app = ModernSecurityAuditorApp()
|
| 10 |
+
app.launch(
|
| 11 |
+
server_name="0.0.0.0",
|
| 12 |
+
server_port=7860,
|
| 13 |
+
share=False
|
| 14 |
+
)
|