diff options
| author | vincent van beek <vincent@vlogic.nl> | 2026-03-31 13:51:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-31 12:51:28 +0100 |
| commit | 07a2e0233a75e0cbc12c18b731d575a00a20aad2 (patch) | |
| tree | cfcd198b8f3b4ae92a1679620f57aa0816d3a35f /opendc-web | |
| parent | 0ae172363b8d9544b3cad15cfcb6733f2c814afb (diff) | |
Merge pull request #396 from atlarge-research/remove-test-settings
remove test flags for disabling authentication
Diffstat (limited to 'opendc-web')
3 files changed, 6 insertions, 6 deletions
diff --git a/opendc-web/opendc-web-runner/Dockerfile b/opendc-web/opendc-web-runner/Dockerfile index d00c53fc..3c575c9e 100644 --- a/opendc-web/opendc-web-runner/Dockerfile +++ b/opendc-web/opendc-web-runner/Dockerfile @@ -15,7 +15,7 @@ COPY --from=0 /app/opendc-web/opendc-web-runner/build/install /opt/ COPY --from=0 /app/opendc-experiments/opendc-experiments-base/src/test/resources/workloadTraces \ /opt/opendc/traces WORKDIR /opt/opendc -CMD bin/opendc-web-runner +CMD /opt/opendc-web-runner/bin/opendc-runner LABEL org.opencontainers.image.authors="OpenDC Maintainers <opendc@atlarge-research.com>" LABEL org.opencontainers.image.url="https://opendc.org" diff --git a/opendc-web/opendc-web-server/src/main/resources/application-docker.properties b/opendc-web/opendc-web-server/src/main/resources/application-docker.properties index 3a9dce27..f0b3e7dc 100644 --- a/opendc-web/opendc-web-server/src/main/resources/application-docker.properties +++ b/opendc-web/opendc-web-server/src/main/resources/application-docker.properties @@ -46,7 +46,7 @@ quarkus.smallrye-openapi.oidc-open-id-connect-url=https://${OPENDC_AUTH0_DOMAIN: quarkus.smallrye-openapi.servers=https://api.opendc.org # Enable the settings below if you want to test the docker-compose deployment locally -quarkus.hibernate-orm.database.generation=drop-and-create -quarkus.resteasy.path=/api -quarkus.oidc.enabled=false -opendc.security.enabled=false +#quarkus.hibernate-orm.database.generation=drop-and-create +#quarkus.resteasy.path=/api +#quarkus.oidc.enabled=false +#opendc.security.enabled=false diff --git a/opendc-web/opendc-web-server/src/main/resources/application-prod.properties b/opendc-web/opendc-web-server/src/main/resources/application-prod.properties index fe997fc0..835148f8 100644 --- a/opendc-web/opendc-web-server/src/main/resources/application-prod.properties +++ b/opendc-web/opendc-web-server/src/main/resources/application-prod.properties @@ -26,7 +26,7 @@ quarkus.datasource.jdbc.url=jdbc:h2:file:./data/opendc;DB_CLOSE_DELAY=-1;INIT=CR quarkus.hibernate-orm.dialect=org.hibernate.dialect.H2Dialect # Disable authentication -opendc.security.enabled=false +opendc.security.enabled=true quarkus.oidc.enabled=${opendc.security.enabled} # Mount web UI at root and API at "/api" |
