diff --git a/.docker/dist.tar.gz b/.docker/dist.tar.gz index 41421af414e1f200cced2348ab00977bde12c8b1..411c92f64cd600841b98f1375c32b920895df2e0 100644 Binary files a/.docker/dist.tar.gz and b/.docker/dist.tar.gz differ diff --git a/.docker/docker-compose.yml b/.docker/docker-compose.yml index ce5680133fcfe2690220850359b9f0dc5c28f3c8..67204a64caecd0976cb9274a5f7d83b25d3cc1d8 100644 --- a/.docker/docker-compose.yml +++ b/.docker/docker-compose.yml @@ -275,6 +275,9 @@ services: container_name: dbrepo-ui hostname: ui image: registry.datalab.tuwien.ac.at/dbrepo/ui:1.4.5 + environment: + NUXT_PUBLIC_API_CLIENT: "${BASE_URL:-http://localhost}" + NUXT_PUBLIC_UPLOAD_CLIENT: "${BASE_URL:-http://localhost}/api/upload/files" depends_on: dbrepo-search-service: condition: service_started @@ -397,8 +400,8 @@ services: - "-s3-endpoint=${STORAGE_ENDPOINT:-http://storage-service:9000}" - "-s3-bucket=dbrepo" environment: - AWS_ACCESS_KEY_ID: "${STORAGE_USERNAME:-seaweedfsadmin}" - AWS_SECRET_ACCESS_KEY: "${STORAGE_PASSWORD:-seaweedfsadmin}" + AWS_ACCESS_KEY_ID: "${S3_ACCESS_KEY_ID:-seaweedfsadmin}" + AWS_SECRET_ACCESS_KEY: "${S3_SECRET_ACCESS_KEY:-seaweedfsadmin}" AWS_REGION: "${STORAGE_REGION_NAME:-default}" depends_on: dbrepo-storage-service: diff --git a/.docs/examples/theater.md b/.docs/examples/theater.md new file mode 100644 index 0000000000000000000000000000000000000000..2ea453cfc9077f07490eada2c3d7c38f401053cf --- /dev/null +++ b/.docs/examples/theater.md @@ -0,0 +1,27 @@ +--- +author: Martin Weise +--- + +## tl;dr + +[:fontawesome-solid-database: Dataset](https://dbrepo1.ec.tuwien.ac.at/pid/52){ .md-button .md-button--primary target="_blank" } + +## Description + +This section will be expanded soon. + +## Solution + +We host a mirror from the [public data](https://www.stadttheater.uni-hamburg.de/) provided by UHH. + +## DBRepo Features + +- [x] System versioning +- [x] Subset exploration +- [x] External data access for analysis + +## Acknowledgement + +This work was part of a cooperation with the [University of Hamburg](https://www.uni-hamburg.de/en.html). + +<img src="../../images/logos/uhh.png" width=100 /> \ No newline at end of file diff --git a/.docs/images/logos/uhh.png b/.docs/images/logos/uhh.png new file mode 100644 index 0000000000000000000000000000000000000000..dc3553771316f67d6912835b3b3d9763e35b114d Binary files /dev/null and b/.docs/images/logos/uhh.png differ diff --git a/docker-compose.yml b/docker-compose.yml index 3ffd0e04a33d4e09e73b4cb8b8a56dfa487283a3..6408cec90431dde9cf7ed97d57d6b30040d9cbf0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -310,6 +310,9 @@ services: APP_VERSION: ${APP_VERSION:-latest} COMMIT: ${CI_COMMIT_SHA:-} network: host + environment: + NUXT_PUBLIC_API_CLIENT: "${BASE_URL:-http://localhost}" + NUXT_PUBLIC_UPLOAD_CLIENT: "${BASE_URL:-http://localhost}/api/upload/files" depends_on: dbrepo-search-service: condition: service_started diff --git a/mkdocs.yml b/mkdocs.yml index 9bb4588f27727a8e7926caf585094989553957fa..0ba1317c69593e2969769bc8bf9b14c3a2e8f162 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -51,6 +51,7 @@ nav: - Survey Data: examples/survey.md - Lute Data: examples/lute-data.md - Music-ML Data: examples/music.md + - Theater Data: examples/theater.md - Transportation Data: examples/transportation.md - XPS Data: examples/xps-data.md - publications.md