AJ50's picture
Initial voice cloning backend with all dependencies
5008b66
raw
history blame
328 Bytes
"""Gunicorn entry point for the voice cloning backend."""
import sys
from pathlib import Path
# Ensure backend directory is in the path for imports
backend_dir = Path(__file__).parent
if str(backend_dir) not in sys.path:
sys.path.insert(0, str(backend_dir))
from app import app
if __name__ == "__main__":
app.run()