PromiseTrack-AI / run.py
Harisri
Initial deployment: PromiseTrack AI with 15 companies
80b6680
raw
history blame contribute delete
262 Bytes
"""
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,
)