Download TVS
π Using the TVS Launcher
Section titled βπ Using the TVS LauncherβDownload the TVS Launcher for your platform, move it to its own folder and run it. The launcher will automatically download and update TVS for you. See Using the Launcher for more information.
Download Launcher for WindowsDownload Launcher for Raspberry Pi
Download Launcher for other Linux distributions on GitHub
Next Steps
π As a Static website
Section titled βπ As a Static websiteβYou can also download the latest static website version of TVS and host it yourself. This is useful for shared web hosting, GitHub Pages or other static site hosts or if you have a web server already set up.
Download on GitHubNext Steps
π As a Docker image
Section titled βπ As a Docker imageβYou can run TVS as a Docker container. This is useful for self-hosting or deploying to cloud platforms that support Docker.
View on Docker Hubdocker run -d \ --name tvs-server \ -p 80:3000 \ -v /path/to/your/config.tvs.yml:/home/static/config.tvs.yml \ -v /path/to/your/content:/home/static/content \ --restart unless-stopped \ zshall/television-simulator:latestservices: tvs-server: image: 'zshall/television-simulator:latest' restart: unless-stopped ports: - '80:3000' volumes: - /var/tvs/config.tvs.yml:/home/static/config.tvs.yml - /var/tvs/content:/home/static/content