File size: 1,575 Bytes
6ce20d9 50a66f8 2cebf25 50a66f8 6ce20d9 712bf79 2cebf25 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
#!/usr/bin/env python3
"""
FRED ML - Economic Analytics Platform
Streamlit Cloud Deployment Entry Point
"""
import sys
import os
# Add the frontend directory to the path
current_dir = os.path.dirname(os.path.abspath(__file__))
frontend_dir = os.path.join(current_dir, 'frontend')
if frontend_dir not in sys.path:
sys.path.insert(0, frontend_dir)
# Add the current directory to the path as well
if current_dir not in sys.path:
sys.path.insert(0, current_dir)
main = None # Initialize main as None
try:
# Import only the main function to avoid loading unnecessary modules
from frontend.app import main
print("Successfully imported main function from frontend.app")
except ImportError as e:
print(f"Error importing from frontend.app: {e}")
try:
# Fallback: try importing directly
from app import main
print("Successfully imported main function from app")
except ImportError as e2:
print(f"Error importing from app: {e2}")
# Last resort: define a simple main function
import streamlit as st
def main():
st.error("Failed to import main application. Please check the deployment.")
st.info("Contact support if this issue persists.")
print("Using fallback main function")
# Run the main function directly
if __name__ == "__main__":
if main is not None:
main()
else:
import streamlit as st
st.error("Failed to import main application. Please check the deployment.")
st.info("Contact support if this issue persists.") |