members.lumbung.space/makefile

14 lines
326 B
Makefile
Raw Normal View History

2022-01-10 12:34:17 +00:00
.DEFAULT: run
.PHONY: run redis
run:
@if [ ! -d ".venv" ]; then \
python3 -m venv .venv && \
.venv/bin/pip install -U pip setuptools wheel poetry && \
.venv/bin/poetry install; \
fi
.venv/bin/poetry run uvicorn members_lumbung_space.main:app --reload
redis:
@docker run -p 6379:6379 --name redis -d redis:6-alpine