import os ISSUER: str = os.getenv('ISSUER') # type: ignore OAUTH2_TABLE: str = os.getenv('OAUTH2_TABLE') # type: ignore OAUTH2_SCOPES_SUPPORTED: str = os.getenv('OAUTH2_SCOPES_SUPPORTED', '') OAUTH2_REFRESH_TOKEN_EXPIRES_IN = 86_400 * 7 # 7 days SESSION_SECRET: str = os.environ.get('SESSION_SECRET') # type: ignore SESSION_EXPIRES_IN = 86400 * 30 # 30 days