ACloudCenter commited on
Commit
3256216
·
verified ·
1 Parent(s): 4ea1b39

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -20
app.py DELETED
@@ -1,20 +0,0 @@
1
- #!/usr/bin/env python3
2
- """
3
- ExposureGPT - HuggingFace Spaces App
4
- Simplified OSINT Intelligence Platform with MCP Support
5
- """
6
-
7
- import os
8
- import sys
9
-
10
- # Set up environment for HuggingFace Spaces
11
- os.environ.setdefault('GRADIO_SERVER_NAME', '0.0.0.0')
12
- os.environ.setdefault('GRADIO_SERVER_PORT', '7860')
13
-
14
- # Import and run the simplified version
15
- from exposuregpt_simple import main
16
-
17
- if __name__ == "__main__":
18
- # Force web mode for HuggingFace Spaces
19
- sys.argv = ['app.py', '--port', '7860', '--share']
20
- main()