Spaces:
Running
Running
| #!/usr/bin/env python3 | |
| """Entry point for AI Radio application""" | |
| import sys | |
| import os | |
| # Add src directory to Python path | |
| sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src")) | |
| # Import and run the app | |
| from app import demo | |
| if __name__ == "__main__": | |
| demo.launch( | |
| server_name="0.0.0.0", | |
| server_port=7871, | |
| share=False | |
| ) | |