Settings
Configure your YouTube connection and API credentials
AI Auto Metadata
DeepSeek title, description, and tags after upload
Logo Auto Upload
Render routed logos; upload private YouTube drafts
Automation status is unavailable. Check that the backend is running on port 8001.
YouTube Accounts
Set a unique upload handle for each channel
Setup Instructions
1
Configure .env file
Copy backend/.env.example to backend/.env and fill in your API keys.
cp backend/.env.example backend/.env
2
Get Anthropic API Key
Sign up at console.anthropic.com and add ANTHROPIC_API_KEY to your .env file.
ANTHROPIC_API_KEY=sk-ant-...
3
Google Cloud Setup
Create a project in Google Cloud Console, enable YouTube Data API v3, and create OAuth 2.0 credentials.
GOOGLE_CLIENT_ID=... GOOGLE_CLIENT_SECRET=...
4
Start the Backend
Install dependencies and start the FastAPI server.
pip install -r backend/requirements.txt python -m uvicorn backend.main:app --reload