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