sound-effects/config.php
DJP 4c734e51d4 Initial commit: Sound Effects App
Added complete sound effects application with multiple versions (V1, V2),
configuration files, webhook functionality, and associated assets.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-14 16:04:47 -04:00

10 lines
No EOL
363 B
PHP

<?php
// Configuration file for ElevenLabs Sound Effect Generator
// IMPORTANT: Replace 'your-api-key-here' with your actual ElevenLabs API key
return [
'elevenlabs_api_key' => 'sk_2505245d89019fb6bbdc1c7a472ea9b537bca4b71a4af411',
'max_file_age_hours' => 24, // Auto-delete generated files older than this
'generated_files_dir' => 'generated/'
];
?>