Initial commit - Video Service for Coolify

This commit is contained in:
2025-12-17 10:07:44 +01:00
commit baa1675738
46 changed files with 2386 additions and 0 deletions

31
requirements.txt Executable file
View File

@@ -0,0 +1,31 @@
# FastAPI + ASGI
fastapi==0.115.5
uvicorn[standard]==0.32.1
python-multipart==0.0.17
# Celery + Redis
celery[redis]==5.4.0
redis==5.2.1
# JWT + Security
pyjwt==2.10.1
python-jose[cryptography]==3.3.0
passlib[bcrypt]==1.7.4
# FFmpeg + Video
ffmpeg-python==0.2.0
# Pydantic + Config
pydantic==2.10.2
pydantic-settings==2.6.1
# HTTP Client (for WordPress webhook)
httpx==0.28.1
# Testing
pytest==8.3.3
pytest-asyncio==0.24.0
httpx==0.28.1
# Utilities
python-dotenv==1.0.1