From ed305aedde241d8e4c12685415c28da0fa68a9a2 Mon Sep 17 00:00:00 2001 From: Johannes Baum <4518664+Annoraaq@users.noreply.github.com> Date: Fri, 20 Dec 2024 14:03:47 +0000 Subject: [PATCH] Add v3 ui to tsdev.sh --- utils/tsdev.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/utils/tsdev.sh b/utils/tsdev.sh index c9871cb725..b5e1df1379 100755 --- a/utils/tsdev.sh +++ b/utils/tsdev.sh @@ -83,6 +83,12 @@ case "$1" in web) $s docker exec --interactive --tty $CONTAINER_ID gunicorn --reload --bind 0.0.0.0:5000 --log-level debug --capture-output --timeout 600 timesketch.wsgi:application ;; + v3-dev) + $s docker exec --interactive --tty $CONTAINER_ID yarn run --cwd=/usr/local/src/timesketch/timesketch/frontend-v3 dev + ;; + v3-install-deps) + $s docker exec --interactive --tty $CONTAINER_ID yarn install --cwd=/usr/local/src/timesketch/timesketch/frontend-v3 + ;; *) echo \""$1"\" is not a valid command.; help esac