We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51c5e89 commit 4ddac04Copy full SHA for 4ddac04
backend/app/config.py
@@ -1,12 +1,11 @@
1
-
2
from typing import List
3
4
from pydantic import BaseSettings, AnyHttpUrl
5
6
7
class Settings(BaseSettings):
8
APP_NAME: str = "Clowder"
9
- API_HOST: str = "http://127.0.0.1:8000"
+ API_HOST: str = "http://localhost:8000"
10
API_V2_STR: str = "/api/v2"
11
admin_email: str = "[email protected]"
12
frontend_url: str = "http://localhost:3000"
backend/app/routers/keycloak.py
@@ -37,7 +37,7 @@ async def login() -> RedirectResponse:
37
keycloak_openid.auth_url(
38
redirect_uri=settings.auth_redirect_uri,
39
scope="openid email",
40
- state=token_urlsafe(32)
+ state=token_urlsafe(32),
41
)
42
43
0 commit comments