mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
* replace upsert with seperate create many and raw update many calls * add bulk repo status update and queue addition with priority * add support for managed redis * add note for changing raw sql on schema change * add error package and use BackendException in connection manager * handle connection failure display on web app * add warning banner for not found orgs/repos/users * add failure handling for gerrit * add gitea notfound warning support * add warning icon in connections list * style nits * add failed repo vis in connections list * added retry failed repo index buttons * move nav indicators to client with polling * fix indicator flash issue and truncate large list results * display error nav better * truncate failed repo list in connection list item * fix merge error * fix merge bug * add connection util file [wip] * refactor notfound fetch logic and add missing error package to dockerfile * move repeated logic to function and add zod schema for syncStatusMetadata
38 lines
647 B
Makefile
38 lines
647 B
Makefile
|
|
CMDS := zoekt yarn
|
|
|
|
ALL: $(CMDS)
|
|
|
|
yarn:
|
|
yarn install
|
|
|
|
zoekt:
|
|
mkdir -p bin
|
|
go build -C vendor/zoekt -o $(PWD)/bin ./cmd/...
|
|
export PATH=$(PWD)/bin:$(PATH)
|
|
export CTAGS_COMMANDS=ctags
|
|
|
|
clean:
|
|
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 \
|
|
.sourcebot
|
|
|
|
soft-reset:
|
|
rm -rf .sourcebot
|
|
redis-cli FLUSHALL
|
|
|
|
|
|
.PHONY: bin
|