Initial commit of YouTube Downloader application, including core functionality for downloading videos, user authentication, and Docker support. Added configuration files, environment setup, and basic UI components using Astro.js and Tailwind CSS.

This commit is contained in:
Peter Meier
2025-12-22 10:59:01 +01:00
parent 79d8a95391
commit 486639aaea
31 changed files with 13078 additions and 132 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.8'
services:
app:
build: .
ports:
- "4321:4321"
environment:
- LOGIN_USERNAME=${LOGIN_USERNAME:-admin}
- LOGIN_PASSWORD=${LOGIN_PASSWORD:-change-me-in-production}
- DOWNLOAD_DIR=/downloaded
- SESSION_SECRET=${SESSION_SECRET:-change-me-in-production}
- LOCALE=${LOCALE:-de}
- LOGIN=${LOGIN:-true}
- STREAM_ONLY=${STREAM_ONLY:-false}
volumes:
- ./downloaded:/downloaded
restart: unless-stopped