File size: 288 Bytes
596a0cb
44c2c84
 
 
 
 
 
596a0cb
 
 
44c2c84
596a0cb
1
2
3
4
5
6
7
8
9
10
11
12
import os
import sys

# Set port
port = int(os.environ.get("PORT", 7860))

# Import and run Flask app
from neurosight_app_with_auth import app

if __name__ == "__main__":
    # Don't load AI models on startup (comment out model loading)
    app.run(host="0.0.0.0", port=port, debug=False)