Move buscribe-web to top level

pull/414/head
Mike Lang 1 month ago
parent b18688e901
commit 2d40893825

@ -27,7 +27,7 @@ function query(text, start_time, end_time) {
const channel = document.getElementById("channel_select").value;
fetch(`https://wubloader.raptorpond.com/buscribe/${channel}/json?${query_string}`)
fetch(`/buscribe-api/${channel}/json?${query_string}`)
.then(response => response.json())
.then(fillResults)
@ -99,4 +99,4 @@ function showContext(time) {
document.getElementById("search_text").value = "";
doSearch();
}
}

@ -1,5 +0,0 @@
FROM node:17-alpine
RUN npm install less -g
ENTRYPOINT ["lessc"]
Loading…
Cancel
Save