10 lines
127 B
Makefile
10 lines
127 B
Makefile
|
default: run
|
||
|
|
||
|
setup:
|
||
|
@python3 -m venv .venv
|
||
|
@.venv/bin/pip install -r requirements.txt
|
||
|
|
||
|
run:
|
||
|
@.venv/bin/python octomode.py
|
||
|
|