├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── poetry.lock ├── pyproject.toml ├── src └── ipfs_video_gateway │ └── start.py ├── static ├── nginx.conf └── pinner │ ├── favicon.ico │ ├── index.html │ └── index.js ├── test.sh └── tests └── test_start.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | playbook.retry 2 | .vscode 3 | dist 4 | __pycache__ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/ipfs_video_gateway/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/src/ipfs_video_gateway/start.py -------------------------------------------------------------------------------- /static/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/static/nginx.conf -------------------------------------------------------------------------------- /static/pinner/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/static/pinner/favicon.ico -------------------------------------------------------------------------------- /static/pinner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/static/pinner/index.html -------------------------------------------------------------------------------- /static/pinner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/static/pinner/index.js -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/test.sh -------------------------------------------------------------------------------- /tests/test_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bneijt/ipfs-video-gateway/HEAD/tests/test_start.py --------------------------------------------------------------------------------