File size: 377 Bytes
74e758d
 
2eb9a5f
c280a92
2eb9a5f
 
c280a92
e3e3a84
0a7f9b4
 
 
74e758d
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import os

from src.app_factory import create_app

# Create the Flask app using the factory
app = create_app()

if __name__ == "__main__":
    # Enable periodic memory logging and milestone tracking
    os.environ["MEMORY_DEBUG"] = "1"
    os.environ["MEMORY_LOG_INTERVAL"] = "10"
    port = int(os.environ.get("PORT", 8080))
    app.run(debug=True, host="0.0.0.0", port=port)