feat: resource map
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
cellarspoon
2022-01-10 16:20:47 +01:00
parent ff978b5f73
commit 950c369455
14 changed files with 105 additions and 28 deletions

View File

@ -3,12 +3,7 @@
.PHONY: run redis deploy
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
poetry run uvicorn members_lumbung_space.main:app --reload
redis:
@docker run -p 6379:6379 --name redis -d redis:6-alpine