- Rename
.env.exampleto.env - Set your environment variables in that file
- Start the Docker containers
docker compose up -d
The app will be available at http://localhost:3000.
Prerequisites: Node.js 20+, PostgreSQL, yt-dlp, ffmpeg
# Install dependencies
npm install
# Set up environment
cp .env.example .env
# Edit .env with your database URL
# Set up database
npx prisma migrate dev
# Seed demo data (optional)
npm run db:seed
# Start dev server
npm run dev