my-cloud-devops-consulting 1.1.202509061109__py3-none-any.whl → 1.1.202509102304__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- app.py +4 -4
- {my_cloud_devops_consulting-1.1.202509061109.dist-info → my_cloud_devops_consulting-1.1.202509102304.dist-info}/METADATA +1 -1
- my_cloud_devops_consulting-1.1.202509102304.dist-info/RECORD +5 -0
- my_cloud_devops_consulting-1.1.202509061109.dist-info/RECORD +0 -5
- {my_cloud_devops_consulting-1.1.202509061109.dist-info → my_cloud_devops_consulting-1.1.202509102304.dist-info}/WHEEL +0 -0
- {my_cloud_devops_consulting-1.1.202509061109.dist-info → my_cloud_devops_consulting-1.1.202509102304.dist-info}/top_level.txt +0 -0
app.py
CHANGED
@@ -282,8 +282,8 @@ def login_cognito():
|
|
282
282
|
session.pop('user', None)
|
283
283
|
|
284
284
|
# Determine redirect URI based on environment
|
285
|
-
if '
|
286
|
-
redirect_uri = 'https://
|
285
|
+
if 'joinworldtech.com' in request.host:
|
286
|
+
redirect_uri = 'https://joinworldtech.com/authorize' # force HTTPS for production
|
287
287
|
else:
|
288
288
|
redirect_uri = url_for('authorize', _external=True) # use localhost in dev
|
289
289
|
|
@@ -317,8 +317,8 @@ def logout_cognito():
|
|
317
317
|
client_id = '1lc7qso1g3lr9kqbr0nb0jktbs'
|
318
318
|
|
319
319
|
# Ensure trailing slash and domain match Cognito settings exactly
|
320
|
-
if '
|
321
|
-
logout_redirect_uri = 'https://
|
320
|
+
if 'joinworldtech.com' in request.host:
|
321
|
+
logout_redirect_uri = 'https://joinworldtech.com/' # ✅ Matches Cognito config
|
322
322
|
else:
|
323
323
|
logout_redirect_uri = 'http://localhost:50/' # ✅ Matches Cognito config for local
|
324
324
|
|
@@ -0,0 +1,5 @@
|
|
1
|
+
app.py,sha256=p4mgmiyRJdgwh97Ygntmwc5y50-QytNn5aCMk7li8go,11330
|
2
|
+
my_cloud_devops_consulting-1.1.202509102304.dist-info/METADATA,sha256=NJ14Mtgdo4-gs2qBCGtBSoba3wNVKJy3fTi18sMUmd4,785
|
3
|
+
my_cloud_devops_consulting-1.1.202509102304.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
+
my_cloud_devops_consulting-1.1.202509102304.dist-info/top_level.txt,sha256=io9g7LCbfmTG1SFKgEOGXmCFB9uMP2H5lerm0HiHWQE,4
|
5
|
+
my_cloud_devops_consulting-1.1.202509102304.dist-info/RECORD,,
|
@@ -1,5 +0,0 @@
|
|
1
|
-
app.py,sha256=4ramdykHSF3sCq6pMKYmTK31cY0qMECIkobqGibBGNI,11298
|
2
|
-
my_cloud_devops_consulting-1.1.202509061109.dist-info/METADATA,sha256=EOxCqbrO5nyvfNoq3aD9sipmKiVp-rUsLUtVnCUBM_0,785
|
3
|
-
my_cloud_devops_consulting-1.1.202509061109.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
-
my_cloud_devops_consulting-1.1.202509061109.dist-info/top_level.txt,sha256=io9g7LCbfmTG1SFKgEOGXmCFB9uMP2H5lerm0HiHWQE,4
|
5
|
-
my_cloud_devops_consulting-1.1.202509061109.dist-info/RECORD,,
|
File without changes
|