This commit is contained in:
Michael Pilosov 2024-05-31 14:30:09 -06:00
parent 921c1980ad
commit 18f5915b8f
4 changed files with 7 additions and 6 deletions

View File

@ -174,8 +174,8 @@
formattedPath += '-';
}
// Append '.mp4' to the formatted path
let videoPath = `${formattedPath}latest.mp4&t={Date.now()}`;
// Append '.mp4' to the formatted path + cache bust
let videoPath = `${formattedPath}latest.mp4` + "?t=" + Date.now();
let videoPlayer = document.getElementById('video-player');
let videoSource = document.getElementById('video-source');

View File

@ -1,5 +1,5 @@
run: build
docker run --rm -ti --name noaa -e HOST_NAME=localhost -p 9021:9021 -p 4200:4200 noaa
docker run --rm -ti --name noaa -e LIGHTNING_CLOUDSPACE_HOST=noaa.clfx.cc -p 9021:9021 -p 4200:4200 noaa
build:
docker build -t noaa .

View File

@ -10,5 +10,5 @@ PREFECT_API_SERVICES_SCHEDULER_INSERT_BATCH_SIZE = 500
PREFECT_API_SERVICES_SCHEDULER_LOOP_SECONDS = 60
PREFECT_API_SERVICES_SCHEDULER_MIN_RUNS = 3
PREFECT_API_SERVICES_SCHEDULER_MAX_RUNS = 100
PREFECT_API_SERVICES_SCHEDULER_MIN_SCHEDULED_TIME = '0:30:00'
PREFECT_API_SERVICES_SCHEDULER_MAX_SCHEDULED_TIME = '0 days, 8:00:00'
PREFECT_API_SERVICES_SCHEDULER_MIN_SCHEDULED_TIME = '00:30:00'
PREFECT_API_SERVICES_SCHEDULER_MAX_SCHEDULED_TIME = '08:00:00'

View File

@ -1,4 +1,5 @@
prefect==2.17.1
#prefect==2.17.1
prefect==3.0.0rc1
Flask==3.0.3
gunicorn==22.0.0
gevent==24.2.1