import os
import sys
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
# Import the real app instead of creating coming soon page
from app import create_app
app = create_app()
if __name__ == '__main__':
    port = int(os.environ.get('PORT', 5001))  # FIXED: Changed from 8080 to 5000
    app.run(host='0.0.0.0', port=port, debug=True)
