mirror of
https://github.com/artiemis/artemis.git
synced 2026-02-14 00:21:56 +00:00
12 lines
146 B
Makefile
12 lines
146 B
Makefile
ENV=env
|
|
BIN=$(ENV)/bin
|
|
|
|
install:
|
|
$(BIN)/pip install -Ur requirements.txt
|
|
|
|
dev:
|
|
source $(BIN)/activate; pnpx nodemon bot.py
|
|
|
|
clean:
|
|
rm -rf venv
|