Switch to cognito user/password authentication. Major code refactor - Fix 1
All checks were successful
AWS Deploy on Push / build (push) Successful in 4m11s
All checks were successful
AWS Deploy on Push / build (push) Successful in 4m11s
This commit is contained in:
4
app.py
4
app.py
@@ -1,11 +1,7 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
import aws_cdk as cdk
|
import aws_cdk as cdk
|
||||||
import uvicorn
|
|
||||||
from infrastructure.stack import IptvUpdaterStack
|
from infrastructure.stack import IptvUpdaterStack
|
||||||
|
|
||||||
app = cdk.App()
|
app = cdk.App()
|
||||||
IptvUpdaterStack(app, "IptvUpdater")
|
IptvUpdaterStack(app, "IptvUpdater")
|
||||||
app.synth()
|
app.synth()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
uvicorn.run(app, host="0.0.0.0", port=8000)
|
|
||||||
Reference in New Issue
Block a user