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.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
tvid/Makefile

17 行
361 B

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