Remove legacy container and GitLab scaffolding and add ruff and pyright checks.

This commit is contained in:
Abel Luck 2026-03-05 16:07:08 +01:00
parent 6870186009
commit fac0de33e6
14 changed files with 118 additions and 310 deletions

View file

@ -2,17 +2,6 @@ UV ?= uv run
SRC := tailscalesd
TESTS := tests
SHELL := $(shell which bash)
APP_VERSION := $(shell git rev-parse --short HEAD)
DOCKER ?= docker
docker-build:
DOCKER_BUILDKIT=1 $(DOCKER) build -f docker/Dockerfile \
--build-arg=$(APP_VERSION) \
-t tailscalesd:latest \
.
freeze:
uv export --format requirements-txt --no-hashes --no-emit-project > requirements.frozen.txt
fmt:
$(UV) black $(SRC)