tvid is a redirection manager for televisions, lobby displays, status dashboards, and the like, so that you can set all of the displays in your organization to one URL and manage them via the web.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tvid/Makefile

18 lines
361 B

4 years ago
export DOCKER_HOST := ssh://datavi.be
export PYTHONPATH := $(PWD)
export SQLITE_FILENAME := ./db.sqlite
4 years ago
default: docker
peinstall:
pipenv install --python $(shell which python3)
4 years ago
develop:
4 years ago
pipenv run python ./bin/tvidd
clean:
rm -rf build dist tvid.egg-info
docker:
4 years ago
docker build -t sneak/tvid --build-arg UBUNTU_MIRROR="http://ubuntu.datavi.be/ubuntu" .