Initial commit
Some checks failed
Build and Publish Docker Images / build (server.Dockerfile, ${{ vars.IMAGE_NAME_SERVER }}) (push) Has been cancelled
Build and Publish Docker Images / build (server.Dockerfile, ${{ vars.IMAGE_NAME_WORKER }}) (push) Has been cancelled
Build and Publish Docker Images / build (worker.Dockerfile, ${{ vars.IMAGE_NAME_SERVER }}) (push) Has been cancelled
Build and Publish Docker Images / build (worker.Dockerfile, ${{ vars.IMAGE_NAME_WORKER }}) (push) Has been cancelled
Build and Publish Docker Images / setup (push) Has been cancelled

This commit is contained in:
Ben Martin 2025-05-10 13:10:49 +01:00
commit 68f6e85c78
Signed by: ben
GPG key ID: 859A655FCD290E4A
17 changed files with 1286 additions and 0 deletions

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Auto Transcoder</title>
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
<script>
async function fetchWorkers() {
const response = await fetch('/api/workers');
const data = await response.json();
return data;
}
</script>
</head>
<body>
<h1>Welcome to Auto Transcoder</h1>
<h2>Workers</h2>
<ul x-data="{ workers: {} }" x-init="workers = await fetchWorkers()">
<template x-for="id in Object.keys(workers)" :key="id">
<li x-text="id"></li>
</template>
</ul>
</body>
</html>