File size: 262 Bytes
80b6680
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

"""
run.py
Single entrypoint for the PromiseTrack AI Flask app.
"""
 
import config
from app import create_app
 
app = create_app()
 
if __name__ == "__main__":
    app.run(
        host=config.HOST,
        port=config.PORT,
        debug=config.DEBUG,
    )