Skip to main content
close
Font size options
Increase or decrease the font size for this website by clicking on the 'A's.
Contrast options
Choose a color combination to give the most comfortable contrast.

docker build -t iptv-app . docker run -d --name iptv-app -p 8080:8080 iptv-app # or, using docker-compose docker compose up -d E) Android projects

# install dependencies npm install # run in development npm start # build (example) npm run build C) Python-based tools

python3 -m venv venv source venv/bin/activate pip install -r requirements.txt python main.py D) Dockerized projects

A) Clone repository