Switch to cognito user/password authentication. Major code refactor - Fix 1
All checks were successful
AWS Deploy on Push / build (push) Successful in 4m11s

This commit is contained in:
2025-05-16 11:11:16 -05:00
parent c221a8cded
commit c4f19999dc

4
app.py
View File

@@ -1,11 +1,7 @@
#!/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)