📁 New Additions: - Docker Compose configuration for easy deployment - Sample Library: 20+ high-quality audio samples (FX & Rolls) - Project Example: Complete reggaeton_2011_project with documentation * Clip programming details * Mixer effects configuration * Pattern details and README - Scripts: Claude CLI integration script - File Browser: Configuration for easy file management 📝 Updated Files: - README.md: Enhanced documentation - ai_clients.py: Further improvements to AI orchestration - sample_library.py: Enhanced sample selection logic 🎵 Sample Library: - FX & Rolls collection with various percussion elements - Reverse snares, kicks, rolls, bells, and percussion - All samples in .asd format (Ableton sample analysis data) This adds substantial production-ready resources to MusiaIA, making it much more capable of generating diverse music projects! Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
270 B
YAML
15 lines
270 B
YAML
version: '3'
|
|
|
|
services:
|
|
filebrowser:
|
|
image: filebrowser/filebrowser:latest
|
|
container_name: filebrowser
|
|
ports:
|
|
- "8081:80"
|
|
volumes:
|
|
- ./:/srv
|
|
- ./filebrowser_data:/srv/db
|
|
environment:
|
|
- FB_PORT=80
|
|
restart: unless-stopped
|