televex
4 years ago
4 changed files with 16 additions and 6 deletions
@ -1,3 +1,4 @@ |
|||||
.venv* |
.venv* |
||||
venv* |
venv* |
||||
print/__pycache__* |
*__pycache__* |
||||
|
*.pyc |
||||
|
@ -1,11 +1,14 @@ |
|||||
|
# Force these recipes to run at every make request
|
||||
|
.PHONY: screen print |
||||
|
|
||||
setup: |
setup: |
||||
@python3 -m venv .venv && \
|
@python3 -m venv .venv && \
|
||||
.venv/bin/pip install -r requirements.txt |
.venv/bin/pip install -r requirements.txt |
||||
|
|
||||
screen: |
screen: |
||||
@cd screen && \
|
@cd screen && \
|
||||
.venv/bin/python televex.py |
../.venv/bin/python televex.py |
||||
|
|
||||
print: |
print: |
||||
$cd print && \
|
@cd print && \
|
||||
.venv/bin/python start.py |
../.venv/bin/python start.py |
||||
|
Loading…
Reference in new issue