Switch to cognito user/password authentication. Major code refactor.
Some checks failed
AWS Deploy on Push / build (push) Failing after 48s

This commit is contained in:
2025-05-16 11:05:54 -05:00
parent 8d1997fa5a
commit c221a8cded
17 changed files with 220 additions and 109 deletions

6
app.py
View File

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