- Click entrypoint: mybot update (make install / pip -e), mybot chat (claude in repo) - Optional --dangerously-skip-permissions for Claude Code - Makefile install; hatchling package layout - .gitignore: venv, build artifacts, workspace (local symlinks) Made-with: Cursor
16 lines
318 B
Makefile
16 lines
318 B
Makefile
ROOT_DIR := $(shell pwd)
|
|
|
|
.PHONY: help install
|
|
|
|
help:
|
|
@echo "Usage: make [target]"
|
|
@echo ""
|
|
@echo " install Editable pip install of mybot (uses uv when available)"
|
|
|
|
install:
|
|
@if command -v uv >/dev/null 2>&1; then \
|
|
uv pip install -e "$(ROOT_DIR)"; \
|
|
else \
|
|
python3 -m pip install -e "$(ROOT_DIR)"; \
|
|
fi
|