You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
180 B
Makefile
13 lines
180 B
Makefile
2 years ago
|
setup:
|
||
|
python3 -m venv .venv
|
||
|
.venv/bin/pip install poetry
|
||
2 years ago
|
.venv/bin/poetry install
|
||
2 years ago
|
|
||
|
run:
|
||
2 years ago
|
.venv/bin/poetry run start
|
||
|
|
||
|
clean:
|
||
2 years ago
|
rm -rf .venv poetry.lock
|
||
|
|
||
|
shell:
|
||
|
.venv/bin/python3
|