├── .dockerignore ├── .github └── FUNDING.yml ├── CNAME ├── Dockerfile ├── README.md ├── index.html ├── livesports.html ├── logo.png ├── settings.html ├── sources.js └── watch.html /.dockerignore: -------------------------------------------------------------------------------- 1 | CNAME 2 | README.md 3 | .github/ 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambr0sial/nova/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | novastream.top -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambr0sial/nova/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambr0sial/nova/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambr0sial/nova/HEAD/index.html -------------------------------------------------------------------------------- /livesports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambr0sial/nova/HEAD/livesports.html -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambr0sial/nova/HEAD/logo.png -------------------------------------------------------------------------------- /settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambr0sial/nova/HEAD/settings.html -------------------------------------------------------------------------------- /sources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambr0sial/nova/HEAD/sources.js -------------------------------------------------------------------------------- /watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambr0sial/nova/HEAD/watch.html --------------------------------------------------------------------------------