A minimal summarizer for YouTube videos
This guide outlines the steps to deploy the YouTube Transcript Summarizer.
Clone the repository: git clone https://github.com/yourusername/yt-transcript-summarizer.git cd yt-transcript-summarizer
Build Docker images: docker-compose build
Start the services: docker-compose up -d
Run database migrations: docker-compose exec fastapi alembic upgrade head
Logs can be viewed using: docker-compose logs
To update the application: git pull docker-compose build docker-compose up -d
Database backups should be performed regularly
For increased load, consider:
For more detailed information on production deployment best practices, consult the FastAPI documentation and Docker best practices guides.