A quick and dirty octoprint CURSES dashboard

This commit is contained in:
Reid 'arrdem' McKenzie 2021-12-05 11:35:09 -07:00
commit af63cd201f
3 changed files with 114 additions and 0 deletions
projects/octodash

9
projects/octodash/BUILD Normal file
View file

@ -0,0 +1,9 @@
zapp_binary(
name = "octodash",
shebang = "/usr/bin/env /usr/bin/python3",
main = "__main__.py",
deps = [
py_requirement("colored"),
py_requirement("octorest"),
],
)