Skip to content

Commit

Permalink
Update FDA to version 0.21.0 in quickstart example (#544)
Browse files Browse the repository at this point in the history
* Unset 'CORS_ALLOW_ALL_ORIGINS' for fda-api
* update fda to version 0.21.0

---------

Co-authored-by: ekneg54 <[email protected]>
  • Loading branch information
clumsy9 and ekneg54 authored Mar 23, 2024
1 parent 8f86f22 commit 93533cc
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions quickstart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ services:
- ../quickstart/exampledata/config/keycloak:/docker-entrypoint-initdb.d
fda-api:
container_name: fda-api
image: registry.gitlab.com/z-e-u-s/fda/fda-backend:0.16.0
image: registry.gitlab.com/z-e-u-s/fda/fda-backend:0.21.0
network_mode: host
expose:
- 8000
Expand All @@ -172,14 +172,15 @@ services:
POSTGRES_HOST: localhost
POSTGRES_PORT: 25432
DJANGO_SECRET_KEY: "django-insecure-*w($$5i@@iq%!ygufa%%@nfdplt(!e#hoahnjy^@6xdutl8mlqz"
ALLOWED_HOSTS: '["*"]'
CORS_ALLOWED_ORIGINS: '["http://localhost"]'
ALLOWED_HOSTS: "*"
CORS_ALLOWED_ORIGINS: "http://localhost"
KEYCLOAK_SERVER_URL: "http://localhost:8080"
KEYCLOAK_REALM: logprep
KEYCLOAK_CLIENT_ID: fda-backend
KEYCLOAK_CLIENT_SECRET: tYfkKygb1g2Hf6fmAInoq3XPK1OILbSp
KEYCLOAK_CLIENT_ID_FOR_AUTHZ_ROLES: fda
SERVICE_BASE_URL: 'http://localhost:8000/'
SECURE_REDIRECT_EXEMPT: '[".*localhost.*"]'
depends_on:
fda-db:
condition: service_healthy
Expand All @@ -205,7 +206,7 @@ services:
timeout: 5s
retries: 10
fda-frontend:
image: registry.gitlab.com/z-e-u-s/fda/fda-frontend:0.16.0
image: registry.gitlab.com/z-e-u-s/fda/fda-frontend:0.21.0
container_name: fda-frontend
network_mode: host
restart: always
Expand Down

0 comments on commit 93533cc

Please sign in to comment.