lipre

Stream text files for live (coding) representations
Log | Files | Refs

commit be63b1958759aa7adf39f68c13717b5e533ef32d
parent 3f79dc6ca3a703055d2b8de4d7271563548161e6
Author: Vetle Haflan <vetle@haflan.dev>
Date:   Thu, 28 Jan 2021 00:41:08 +0100

Use port 8080 + allow specifying host in env var for lipre.py

Diffstat:
Mlipre.go | 2+-
Mlipre.py | 8+++++---
2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/lipre.go b/lipre.go @@ -135,5 +135,5 @@ func main() { router.HandleFunc("/ws/view/{roomCode}", viewHandler) router.PathPrefix("/").HandlerFunc(fileHandler) http.Handle("/", router) - log.Fatal(http.ListenAndServe(fmt.Sprintf(":%v", 8088), nil)) + log.Fatal(http.ListenAndServe(fmt.Sprintf(":%v", 8080), nil)) } diff --git a/lipre.py b/lipre.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 -from os import listdir +from os import listdir, getenv from os.path import isfile, basename import pyinotify import json @@ -40,10 +40,12 @@ if len(sys.argv) <= 1: exit(1) room_code = sys.argv[1] -if len(sys.argv) >= 3: +if getenv('LPHOST'): + HOST = getenv('LPHOST') +elif len(sys.argv) >= 3: HOST = sys.argv[2] else: - HOST='ws://localhost:8088' + HOST = 'ws://localhost:8080' ws = websocket.WebSocket() ws.connect(f'{HOST}/ws/pres/{room_code}')