Files
iptv-manager-service/app.py
Stefano c221a8cded
Some checks failed
AWS Deploy on Push / build (push) Failing after 48s
Switch to cognito user/password authentication. Major code refactor.
2025-05-16 11:05:54 -05:00

11 lines
251 B
Python

#!/usr/bin/env python3
import aws_cdk as cdk
import uvicorn
from infrastructure.stack import IptvUpdaterStack
app = cdk.App()
IptvUpdaterStack(app, "IptvUpdater")
app.synth()
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)