open source is social v-it.org
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add install-user target for linking vit to PATH

Adds `make install-user` which runs `bun link` to symlink the vit
binary into ~/.bun/bin/. Keeps `make install` as deps-only.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+4 -1
+4 -1
Makefile
··· 1 - .PHONY: install test clean 1 + .PHONY: install install-user test clean 2 2 3 3 install: 4 4 bun install 5 + 6 + install-user: 7 + bun link 5 8 6 9 test: 7 10 bun test