Skip to content
Snippets Groups Projects
Verified Commit 54dd9ed4 authored by Martin Weise's avatar Martin Weise
Browse files

WIP

parent c3ab0338
No related branches found
No related tags found
6 merge requests!345Updated docs and endpoints:,!341Fixed mapping problem where UK and FK share columns they are inserted,!339Fixed mapping problem where UK and FK share columns they are inserted,!338Fixed mapping problem where UK and FK share columns they are inserted,!334Fixed mapping problem where UK and FK share columns they are inserted,!333Fixed mapping problem where UK and FK share columns they are inserted
......@@ -289,7 +289,6 @@ services:
hostname: ui
image: registry.datalab.tuwien.ac.at/dbrepo/ui:1.4.6
environment:
NODE_OPTIONS: "${UI_RUNTIME_OPTIONS:-}"
NUXT_PUBLIC_API_CLIENT: "${BASE_URL:-http://localhost}"
NUXT_PUBLIC_API_SERVER: "${BASE_URL:-http://localhost}"
NUXT_PUBLIC_UPLOAD_CLIENT: "${BASE_URL:-http://localhost}/api/upload/files"
......
This diff is collapsed.
#!/bin/bash
CALLS=1000
CONCURRENCY=10
ENDPOINT=http://localhost
CALLS=${CALLS:-1000}
CONCURRENCY=${CONCURRENCY:-10}
ENDPOINT=${ENDPOINT:-http://localhost}
echo "[DEBUG] Testing endpoint: ${ENDPOINT} x${CALLS} (concurrency ${CONCURRENCY})"
ab -n "${CALLS}" -c "${CONCURRENCY}" "${ENDPOINT}/"
ab -n "${CALLS}" -c "${CONCURRENCY}" "${ENDPOINT}/search"
ab -n "${CALLS}" -c "${CONCURRENCY}" "${ENDPOINT}/login"
......
......@@ -324,7 +324,6 @@ services:
COMMIT: ${CI_COMMIT_SHA:-}
network: host
environment:
NODE_OPTIONS: "${UI_RUNTIME_OPTIONS:-}"
NUXT_PUBLIC_API_CLIENT: "${BASE_URL:-http://localhost}"
NUXT_PUBLIC_API_SERVER: "${BASE_URL:-http://localhost}"
NUXT_PUBLIC_UPLOAD_CLIENT: "${BASE_URL:-http://localhost}/api/upload/files"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment