Initial commit — YT Hub

Self-hosted personal YouTube management app.
FastAPI + SQLite backend, React + Vite + Tailwind frontend.
Dockerfiles and compose included for Portainer deployment.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
inputnoise
2026-05-25 20:09:04 +02:00
commit 1827dd6c4e
63 changed files with 14480 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["DM Sans", "system-ui", "sans-serif"],
display: ["Space Grotesk", "system-ui", "sans-serif"],
},
colors: {
accent: {
DEFAULT: "#f5a623",
light: "#fbbf45",
dark: "#d4891a",
},
},
aspectRatio: {
video: "16 / 9",
},
},
},
plugins: [],
};