- Removed FlareSolverr service from docker-compose.yml and its related environment variables. - Refactored App.svelte to utilize new components for header, login form, and title management. - Introduced new components: AppHeader, LoginForm, AddTitleForm, ChapterList, TitleCard, TitleList, JobsStrip, and ErrorBanner for better modularity and maintainability. - Updated API handling in App.svelte to streamline authentication and title addition processes. - Enhanced user interface with improved error handling and loading states across components.
21 lines
636 B
YAML
21 lines
636 B
YAML
services:
|
|
cxyz:
|
|
build: .
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
PORT: "3000"
|
|
DATA_DIR: /app/data
|
|
# Wake hourly; sync at most one due title per wake.
|
|
WATCH_CRON: "0 * * * *"
|
|
# Each title is eligible again after this many hours (daily).
|
|
WATCH_TITLE_INTERVAL_HOURS: "24"
|
|
# Shared login (optional). When AUTH_PASSWORD is set, the UI and /api require a session.
|
|
# AUTH_USERNAME: admin
|
|
# AUTH_PASSWORD: change-me
|
|
# SESSION_SECRET: long-random-string-at-least-32-chars
|
|
# SESSION_TTL_HOURS: "168"
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|