feat: scaffold boeh matrix bot with async client, env secrets, and makefile build

This commit is contained in:
2024-12-28 13:25:22 +00:00
commit 4f560f5e24
8 changed files with 335 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
BIN = ./.venv/bin/
PYTHON = ./.venv/bin/python
PIP = ./.venv/bin/pip
APP_NAME=boeh
all: install build
ensure_repo:
-@git init
ensure_env: ensure_repo
-@python3 -m venv .venv
install: ensure_env
$(PIP) install -e .
format:
$(PIP) install shed
. $(BIN)/activate && shed
build:
$(MAKE) format
$(PIP) install build
$(PYTHON) -m build
run:
$(BIN)$(APP_NAME) --port=3028