From c4f19999dc1ec764041b391ba7f34a758c015cd1 Mon Sep 17 00:00:00 2001 From: Stefano Date: Fri, 16 May 2025 11:11:16 -0500 Subject: [PATCH] Switch to cognito user/password authentication. Major code refactor - Fix 1 --- app.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app.py b/app.py index 6bb71c4..ea9d225 100644 --- a/app.py +++ b/app.py @@ -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) \ No newline at end of file +app.synth() \ No newline at end of file