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

55
.dockerignore Normal file
View File

@@ -0,0 +1,55 @@
# Git
.git
.gitignore
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
.env
.venv
venv/
ENV/
.eggs
*.egg-info/
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# Docker
Dockerfile*
docker-compose*.yml
.docker/
# Documentation
*.md
docs/
LICENSE
# Tests
tests/
test_*.py
*_test.py
conftest.py
# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
Jenkinsfile
# Misc
*.log
*.tmp
.DS_Store
Thumbs.db