Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# Keycloak configuration

#ML_BACKEND_KEYCLOAK_URL=http://localhost:8080/aiod-auth/
KEYCLOAK_URL=https://auth.aiod.eu/aiod-auth/ # This corresponds to UNIZAR's testing Keycloak instance. Replace if necessary
KEYCLOAK_URL=https://auth.aiod.eu/aiod-auth/ # This corresponds to UNIZAR's production Keycloak instance. Replace if necessary
KEYCLOAK_REALM=aiod
KEYCLOAK_OPENID_CONNECT_URL=https://auth.aiod.eu/aiod-auth/realms/aiod/.well-known/openid-configuration
KEYCLOAK_OPENID_CONNECT_URL=https://auth.aiod.eu/aiod-auth/realms/aiod/.well-known/openid-configuration # This corresponds to UNIZAR's production Keycloak instance. Replace if necessary


# My library backend configuration
Expand Down
1 change: 1 addition & 0 deletions app/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import uvicorn

if __name__ == "__main__":
# uvicorn.run("server.app:app", host="127.0.0.1", port=8000, reload=True)
uvicorn.run("server.app:app", host="0.0.0.0", port=8000, reload=True)