12 lines
141 B
Makefile
12 lines
141 B
Makefile
.PHONY: install debug
|
|
|
|
install:
|
|
python3 -m pip install -r requirements.txt
|
|
|
|
run:
|
|
python3 src/main.py
|
|
|
|
debug:
|
|
DEBUG=1
|
|
python3 src/main.py
|