update jwt secret

This commit is contained in:
usmannasir
2025-05-18 18:16:33 +05:00
parent 1506c802d4
commit 624246c68a
5 changed files with 59 additions and 2 deletions

View File

@@ -11,7 +11,8 @@ from jose import jwt, JWTError
import logging
app = FastAPI()
JWT_SECRET = "YOUR_SECRET_KEY"
# JWT_SECRET = "YOUR_SECRET_KEY"
JWT_SECRET = "REPLACE_ME_WITH_INSTALLER"
JWT_ALGORITHM = "HS256"
# Allow CORS for local dev/testing