Files
iptv-manager-service/app/cabletv/utils/config.py
Stefano 8c9ea4187e
All checks were successful
AWS Deploy on Push / build (push) Successful in 1m14s
Added code that generates playlist and epg
2025-05-15 12:18:38 -05:00

15 lines
617 B
Python

import os
from dotenv import load_dotenv
# Load environment variables from a .env file if it exists
load_dotenv()
IPTV_SERVER_URL = os.getenv("IPTV_SERVER_URL", "https://iptv.fiorinis.com")
# Super iptv-server admin credentials for basic auth
# Reads from environment variables IPTV_SERVER_ADMIN_USER and IPTV_SERVER_ADMIN_PASSWORD
IPTV_SERVER_ADMIN_USER = os.getenv("IPTV_SERVER_ADMIN_USER", "admin")
IPTV_SERVER_ADMIN_PASSWORD = os.getenv("IPTV_SERVER_ADMIN_PASSWORD", "adminpassword")
# URL for the EPG XML file to place in the playlist's header
EPG_URL = os.getenv("EPG_URL", "https://example.com/epg.xml.gz")