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.
21 lines
303 B
Makefile
21 lines
303 B
Makefile
3 years ago
|
setup:
|
||
|
python3 -m venv .venv
|
||
|
.venv/bin/pip install -r requirements.txt
|
||
|
|
||
|
shell:
|
||
|
bash manage.sh shell
|
||
|
|
||
|
dev:
|
||
|
bash manage.sh run
|
||
|
|
||
|
prod:
|
||
|
bash manage.sh prod
|
||
|
|
||
|
huey:
|
||
|
mkdir -p data/
|
||
|
.venv/bin/huey_consumer suchwowx.tasks.huey -w 1 -v | tee -a data/huey.log
|
||
|
|
||
|
kill:
|
||
|
pkill -e -f huey
|
||
|
pkill -e -f suchwowx
|