https://github.com/shashstormer/m3u8_proxy-cors
python proxy for m3u8 files
https://github.com/shashstormer/m3u8_proxy-cors
cors fastapi m3u8 python python3 server streaming uvicorn website
Last synced: 3 months ago
JSON representation
python proxy for m3u8 files
- Host: GitHub
- URL: https://github.com/shashstormer/m3u8_proxy-cors
- Owner: shashstormer
- License: gpl-3.0
- Created: 2023-03-30T10:07:54.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-26T18:47:52.000Z (over 1 year ago)
- Last Synced: 2025-07-05T16:19:15.171Z (12 months ago)
- Topics: cors, fastapi, m3u8, python, python3, server, streaming, uvicorn, website
- Language: Python
- Homepage:
- Size: 59.6 KB
- Stars: 35
- Watchers: 1
- Forks: 51
- Open Issues: 0
-
Metadata Files:
- Readme: README.Docker.md
- License: LICENSE
Awesome Lists containing this project
README
### Building and running your application
When you're ready, start your application by running:
`docker compose up --build`.
Your application will be available at http://localhost:5010.
### Deploying your application to the cloud
First, build your image, e.g.: `docker build -t myapp .`.
If your cloud uses a different CPU architecture than your development
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
you'll want to build the image for that platform, e.g.:
`docker build --platform=linux/amd64 -t myapp .`.
Then, push it to your registry, e.g. `docker push myregistry.com/myapp`.
Consult Docker's [getting started](https://docs.docker.com/go/get-started-sharing/)
docs for more detail on building and pushing.
### References
* [Docker's Python guide](https://docs.docker.com/language/python/)