mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 20:35:24 +00:00
* chore: Fix misc typos (UI, docs, code...) * chore(dev): Support PATH with spaces in Makefile E.g. `Application Support` on MacOS * chore: Typos in schema v2 description * chore: more typos * chore(dev): Add _typos.toml
47 lines
859 B
Makefile
47 lines
859 B
Makefile
|
|
CMDS := zoekt yarn
|
|
|
|
ALL: $(CMDS)
|
|
|
|
yarn:
|
|
yarn install
|
|
yarn build:deps
|
|
|
|
zoekt:
|
|
mkdir -p bin
|
|
go build -C vendor/zoekt -o $(PWD)/bin ./cmd/...
|
|
export PATH="$(PWD)/bin:$(PATH)"
|
|
export CTAGS_COMMANDS=ctags
|
|
|
|
clean:
|
|
redis-cli FLUSHALL
|
|
yarn dev:prisma:migrate:reset
|
|
|
|
rm -rf \
|
|
bin \
|
|
node_modules \
|
|
packages/web/node_modules \
|
|
packages/web/.next \
|
|
packages/backend/dist \
|
|
packages/backend/node_modules \
|
|
packages/db/node_modules \
|
|
packages/db/dist \
|
|
packages/schemas/node_modules \
|
|
packages/schemas/dist \
|
|
packages/crypto/node_modules \
|
|
packages/crypto/dist \
|
|
packages/error/node_modules \
|
|
packages/error/dist \
|
|
packages/mcp/node_modules \
|
|
packages/mcp/dist \
|
|
packages/shared/node_modules \
|
|
packages/shared/dist \
|
|
.sourcebot
|
|
|
|
soft-reset:
|
|
rm -rf .sourcebot
|
|
redis-cli FLUSHALL
|
|
yarn dev:prisma:migrate:reset
|
|
|
|
|
|
.PHONY: bin
|